lnmp取消nginx目录PHP执行权限_PHP教程

WBOY
发布: 2016-07-13 10:30:13
原创
963 人浏览过

   首先要编辑nginx的虚拟主机配置,在fastcgi的location语句的前面按下面的内容添加:

  1、单个目录去掉PHP执行权限

  location ~ /attachments/.*\.(php|php5)?$ {

  deny all;

  }

  将attachments目录的PHP执行权限去掉。

  2、多个目录去掉PHP执行权限

  location ~ /(attachments|upload)/.*\.(php|php5)?$ {

  deny all;

  }

  将attachments、upload这二个目录的PHP执行权限去掉。

  附上一个完整的虚拟主机的例子供参考:

  server

  {

  listen 80;

  server_name www.45it.com;

  index index.html index.htm index.php;

  root /home/wwwroot/bbs.vpser.net;include discuz.conf;

  location ~ /(attachments|upload)/.*\.(php|php5)?$ {

  deny all;

  }

  location ~ .*\.(php|php5)?$

  {

  fastcgi_pass unix:/tmp/php-cgi.sock;

  fastcgi_index index.php;

  include fcgi.conf;

  }

  access_log off;

  }

  添加完执行:/usr/local/nginx/sbin/nginx -t测试配置文件,执行:/usr/local/nginx/sbin/nginx -s reload 载入配置文件使其生效。

  注:注意顺序,一定要放在 “location ~ .*\.(php|php5)?$” 一行上面,不然不会生效。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/767401.htmlTechArticle首先要编辑nginx的虚拟主机配置,在fastcgi的location语句的前面按下面的内容添加: 1、单个目录去掉PHP执行权限 location ~ /attachments/.*\.(php|p...
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板