X-Frame-Options header
Note:
For more comprehensive options than offered by this header, see the
frame-ancestors directive in a Content-Security-Policy header.The HTTP
X-Frame-Options response header can be used to indicate whether a browser should be allowed to render a page in a <frame>, <iframe>, <embed> or <object>. Sites can use this to avoid clickjacking attacks, by ensuring that their content is not embedded into other sites.The added security is provided only if the user accessing the document is using a browser that supports
X-Frame-Options.| Header type | Response header |
|---|
Syntax
Directives
DENY-
The page cannot be displayed in a frame, regardless of the site attempting to do so. Not only will the browser attempt to load the page in a frame fail when loaded from other sites, attempts to do so will fail when loaded from the same site.
SAMEORIGIN-
The page can only be displayed if all ancestor frames have the same origin as the page itself. You can still use the page in a frame as long as the site including it in a frame is the same as the one serving the page.
ALLOW-FROM origin-
This is an obsolete directive. Modern browsers that encounter response headers with this directive will ignore the header completely. The
Content-Security-PolicyHTTP header has aframe-ancestorsdirective which you should use instead.
Examples
Warning:
Setting
X-Frame-Options inside the <meta> element (e.g., <meta http-equiv="X-Frame-Options" content="deny">) has no effect. X-Frame-Options is only enforced via HTTP headers, as shown in the examples below.Configuring Apache
To configure Apache to send the
X-Frame-Options header for all pages, add this to your site's configuration:To configure Apache to set
X-Frame-Options to DENY, add this to your site's configuration:Configuring Nginx
To configure Nginx to send the
X-Frame-Options header, add this either to your http, server or location configuration:You can set the
X-Frame-Options header to DENY using:Configuring IIS
To configure IIS to send the
X-Frame-Options header, add this to your site's Web.config file:For more information, see the Microsoft support article on setting this configuration using the IIS Manager (external) user interface.
Configuring HAProxy
To configure HAProxy to send the
X-Frame-Options header, add this to your front-end, listen, or backend configuration:rspadd X-Frame-Options:\ SAMEORIGIN
Alternatively, in newer versions:
http-response set-header X-Frame-Options SAMEORIGIN
Configuring Express
To set
X-Frame-Options to SAMEORIGIN using Helmet (external) add the following to your server configuration:Specifications
| Specification |
|---|
| HTML # the-x-frame-options-header (external) |
Browser compatibility
|
Chrome
|
Edge
|
Firefox
|
Opera
|
Safari
|
Chrome Android
|
Firefox for Android
|
Opera Android
|
Safari on iOS
|
Samsung Internet
|
WebView Android
|
WebView on iOS
|
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ALLOW-FROM
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SAMEORIGIN
|
|
|
|
|
|
|
|
|
|
|
|
|
Legend
Tip: you can click/tap on a cell for more information.
Full support
No support
Non-standard. Check cross-browser support before using.
Deprecated. Not for use in new websites.
See implementation notes.
