tp程序使用Nginx屏蔽指定来路的伪静态

location ~* (runtime|application)/{
return 403;
}
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
if ($http_referer ~* "baidu.com") {return 502;}
if ($http_referer ~* "so.com") {return 502;}

 

如上,屏蔽百度和360搜索,返回502状态码

当前文章【tp程序使用Nginx屏蔽指定来路的伪静态】由【卡酷云科】编写。

文章URL为https://blog.7ka.co/ccsafe/tpchengxushiyongnginxpingbizhidinglailudeweijingtai.html

未经允许,请勿转载
THE END
分享
二维码
打赏
< <上一篇
下一篇>>
文章目录
关闭
目 录