I have two internal sites. I\'m trying to show one\'s content in the iframe of the other site. However I\'m getting this message: \"This content cannot be displayed in a f
Use target="_top"
attribute in anchor tag that will really work.
The X-Frame-Options is defined in the Http Header and not in the <head>
section of the page you want to use in the iframe.
Accepted values are: DENY, SAMEORIGIN and ALLOW-FROM "url"
use <meta http-equiv="X-Frame-Options" content="allow">
in the one to show in the iframe to allow it.