配置EC2以允许其他人将我的网页嵌入其网站?

时间:2016-12-12 23:07:09

标签: php amazon-web-services amazon-ec2 embed x-frame-options

我有一个godaddy.com的域名,我的代码托管在AWS上。

我需要允许其他网站使用Iframe或其他方式在我们的网站上嵌入一些表单或网页!当我尝试使用iframe时。

<iframe src="https://www.mywebsite.com/test_em.php" ></iframe>

我还在我的php文件中添加了以下行:

<?php
    header("Access-Control-Allow-Origin: *");
    header('X-Frame-Options: GOFORIT');
?>

我收到以下错误:

  

多个&#39; X-Frame-Options&#39;带有冲突值的标头   (&#39; SAMEORIGIN,GOFORIT&#39;)在加载时遇到   &#39; https://www.mywebsite.com/test_em.php&#39 ;.回到DENY&#39;。

     

拒绝展示&#39; https://www.mywebsite.com/test_em.php&#39;在一个框架中   因为它设置了X-Frame-Options&#39;到#SAMEORIGIN,GOFORIT&#39;。

如果有办法将我的网页嵌入其他地方,请告诉我!

0 个答案:

没有答案