编程技术

nginx如何设置禁止解析php文件_编程技术_编程开发技术教程插图

具体方法:

(推荐教程:nginx/” target=”_blank” textvalue=”nginx” target=”_blank” >nginx教程“>nginx” target=”_blank” >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文件
—–文章转载自PHP中文网如有侵权请联系admin#tyuanma.cn删除

php的魔术方法各有什么作用

云服务器推荐