摘要: location ^~ / { # 保存原始 "Cookie" 头值 set $altered_cookie $http_cookie; # 使用正则检查并剔除 "$Path=/" 部分 if ($http_cookie ~ '(.*?);?\s*\$Path="/"([^;]*)') { # 在这 阅读全文
posted @ 2024-12-23 16:45 sojust 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 1.限定仅限指定入口文件可执行 location ~ [^/]\.php(/|$) { # 检查允许的文件名 if ($request_uri !~ ^/(weixinpay|alipay|index)\.php$) { return 403; # 以外的 PHP 文件都禁止访问 } } 2.设置文 阅读全文
posted @ 2024-12-23 16:42 sojust 阅读(7) 评论(0) 推荐(0) 编辑