No URL loaded
0 / 0

Paste URLs in the sidebar to get started

Press S to toggle sidebar  ·  ? for help
This site may block iframe embedding. The page might appear blank.
Help & Troubleshooting
Why some websites won't load
Why is the page blank?

Many websites block iframe embedding via HTTP headers. This is a security feature protecting against clickjacking.

⚠ How blocking works

Websites send headers telling your browser: "Don't embed me." The browser obeys → blank iframe.

HeaderEffect
X-Frame-Options: DENYBlocks all
X-Frame-Options: SAMEORIGINSame-domain only
CSP: frame-ancestors 'none'Modern block
Compatibility
SiteStatus
Google, Gmail, GitHubBlocked
Facebook, X / TwitterBlocked
WikipediaPartial
Your own websitesWorks ✓
Internal tools / dashboardsWorks ✓
Static sites / docsWorks ✓
Make your sites work
✓ Recommended

Set frame-ancestors to allow only walkurls.com.

Apache (.htaccess)
Header set Content-Security-Policy "frame-ancestors 'self' https://walkurls.com"
Header unset X-Frame-Options
Nginx
add_header Content-Security-Policy "frame-ancestors 'self' https://walkurls.com";
Node.js / Express
app.use((req, res, next) => {
  res.setHeader('Content-Security-Policy',
    "frame-ancestors 'self' https://walkurls.com");
  res.removeHeader('X-Frame-Options');
  next();
});
PHP
header("Content-Security-Policy: frame-ancestors 'self' https://walkurls.com");
header_remove("X-Frame-Options");
Vercel (vercel.json)
{
  "headers": [{
    "source": "/(.*)",
    "headers": [{
      "key": "Content-Security-Policy",
      "value": "frame-ancestors 'self' https://walkurls.com"
    }]
  }]
}
Netlify (_headers)
/*
  Content-Security-Policy: frame-ancestors 'self' https://walkurls.com
Testing

Open DevTools F12 → Console. If blocked:

Refused to display 'https://...' in a frame
because it set 'X-Frame-Options' to 'deny'.

Check headers via terminal:

curl -I https://your-site.com | grep -i "frame\|content-security"
Security
⚠ Never use frame-ancestors * in production

Always specify: https://walkurls.com

Keyboard shortcuts
Previous / Next
SpaceToggle auto-play
Home EndFirst / Last
SToggle sidebar
FFullscreen
?This help panel