方案一:用 Nginx 是可以做到的,需要 ngx_http_referer_module 模組的支持,記得 reload 生效。可以如此設定:
location = /index.php { if ($http_referer ~* (www.)?his_site.com) { return 403; } }
方案二:在入口檔 index.php 中手動判斷重定向
if ($_SERVER['HTTP_REFERER'] == 'his_stie.com') { header('HTTP/1.0 403 Forbidden'); exit; }
建議:php伺服器
以上是php如何禁止重定向的詳細內容。更多資訊請關注PHP中文網其他相關文章!