php如何禁止重定向

2020-07-16 10:06:51

方案一:用 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如何禁止重定向的詳細內容,更多請關注TW511.COM其它相關文章!