我使用cakephp 2.x开发了一个网站。
我想使用iframe在另一个网站上显示cakephp网站。 当我在普通网站中使用Iframe代码时,Iframe会显示带有提供样式的空白内容。
以下是iframe代码
<iframe
src='http://mycakephpsite.com/'
width='600' height='800'
frameborder='1'
scrolling='yes'
align='bottom'
style='border:1px #68293c dotted;'>
</iframe>
请让我知道我在哪里做错了。 提前谢谢。
答案 0 :(得分:1)
这个iframe对我有用:
<iframe
sandbox="allow-scripts allow-forms allow-same-origin"
src="http://www.mycakephpsite.com/">
</iframe>
我认为您的网络服务器标题可能存在问题,请检查您的X-Frame-Options选项
https://developer.mozilla.org/en-US/docs/Web/HTTP/X-Frame-Options