nginx如何设置禁止解析php文件
nginx设置禁止解析php文件的方法:可以根据目录来限制php解析。具体方法:首先打开配置文件;然后找到配置【location ~ .php$】,将其设置为【deny all】即可。
具体方法:
(推荐教程:nginx教程)
限制php解析
根据目录来限制php解析:location ~ .*(diy|template|attachments|forumdata|attachment|image)/.*\.php$
{
deny all;
}
限制浏览器访问
使用 user_agent 控制客户端浏览器访问location / {
if ($http_user_agent ~ 'bingbot/2.0|MJ12bot/v1.4.2|Spider/3.0|YoudaoBot|Tomato|Gecko/20100315'){
return 403;
}
}
相关推荐:php培训
nginx如何设置禁止解析php文件的教程已介绍完毕,更多请关注跳墙网其他文章教程!
nginx如何设置禁止解析php文件相关教程