qepwqlpf 发表于 2013-7-5 16:56:35

怎么用nginx 设置禁止访问某个文件

怎么用nginx 设置禁止访问某个文件我想单独禁止访问news_gl.php 应该如何设置啊大师
upload.phppost.php
news_modify.php
news_gl.php
news_fabu.php
news_cat.php
membernews.php
index.php

licess 发表于 2013-7-5 20:54:32

和去掉执行权限一样

https://www.vpser.net/security/lnmp-remove-nginx-php-execute.html

location ~ /(p.php|a.php|c.php) {
deny all;
}
需加在php解析配置前面,否则不生效
页: [1]
查看完整版本: 怎么用nginx 设置禁止访问某个文件