我明白这个错误是无法克服的。
但我想做的是,当我遇到无法嵌入的页面时,页面只是作为弹出窗口加载。当前发生的是我被重定向到该页面。
对于无法嵌入的页面,我在 chrome 中看到以下错误。
Refused to display 'http://www.nokia.com/us-en/' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'
我明白这个错误是无法克服的。
但我想做的是,当我遇到无法嵌入的页面时,页面只是作为弹出窗口加载。当前发生的是我被重定向到该页面。
对于无法嵌入的页面,我在 chrome 中看到以下错误。
Refused to display 'http://www.nokia.com/us-en/' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'
这是一个类似答案的链接,它提供了一个 PHP 脚本来检查标题: Detect X-Frame-Options
您可以对其进行修改,使其采用 GET 变量,如下所示:
$error=false;
$urlhere=$_GET["url"];
$ch = curl_init();
$options = array(
CURLOPT_URL => $urlhere,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_HEADER => true,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_ENCODING => "",
CURLOPT_AUTOREFERER => true,
CURLOPT_CONNECTTIMEOUT => 120,
CURLOPT_TIMEOUT => 120,
CURLOPT_MAXREDIRS => 10,
);
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch);
$headers=substr($response, 0, $httpCode['header_size']);
if(strpos($headers, 'X-Frame-Options: deny')>-1||strpos($headers, 'X-Frame-Options: SAMEORIGIN')>-1) {
$error=true;
}
$httpcode= curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
echo json_encode(array('httpcode'=>$httpcode, 'error'=>$error));
然后使用ajax请求测试每个url
$.getJSON("/path/to/script.php?url="+url_variable, function (data) {
if (data.error) {
// code to display pop-up
} else {
// code to display iframe
}
});