1. 程式人生 > >防止別人iframe自己網頁

防止別人iframe自己網頁

self. ext nginx nbsp acc 自己 type doctype 兩種

<!DOCTYPE html> 
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<!--
解決方案一:js方法這種方法不可靠,不推薦使用
<script type="text/javascript">
if(self != top) { top.location = self.location; }
</script>

把上面的JS代碼片段放到你頁面的 head 中即可。
解決方案二:Meta標簽方法
<meta http-equiv="X-FRAME-OPTIONS" content="DENY">

以上兩種為前端處理方法,就我個人來說不推薦使用,不過這個也是因人而異的,沒有絕對的好與差。
解決方案三:PHP方法
<code><code><?php header(‘X-Frame-Options:Deny‘); ?></code></code>

上面這種是後端程序處理方法。
解決方案四:Apache主機方法
Header always append X-Frame-Options SAMEORIGIN

解決方案五:Nginx主機方法
add_header X-Frame-Options "SAMEORIGIN";

解決方案六:.htaccess方法
在網站根目錄下的.htaccess文件中中加一句
Header append X-FRAME-OPTIONS "SAMEORIGIN"

解決方案七:IIS方法
在web.config文件中加
<system.webServer>
...
<httpProtocol>
<customHeaders>
<add name="X-Frame-Options" value="SAMEORIGIN" />
</customHeaders>
</httpProtocol>
...
</system.webServer>
</body>
</html>

防止別人iframe自己網頁