apache nginx设置目录无执行权限的方法
发布:smiling 来源: PHP粉丝网 添加日期:2013-11-23 17:27:50 浏览: 评论:0
apache nginx设置目录无执行权限的方法web服务有iis,apache,nginx,使用操作系统无非是windows or *nux
- location ~ ^/upload/.*.(php教程|php5)$
- {
- deny all;
- }
来看俩段通常对上传目录设置无权限的列子,配置如下:
- <directory "/var/111cn.net/upload">
- <filesmatch ".php">
- order allow,deny
- deny from all
- </filesmatch>
- </directory>
*nux就不同了,大家都是知道的*nux操作系统是区分大小写的
- <directory "/var/www/upload">
- <filesmatch "(?i:.php)"> //?是尽可能多的匹配.php的字符串,i是不区分大小写,然后冒号后面跟上正则表达式
- order allow,deny
- deny from all
- </filesmatch>
- </directory>
另外看一一nginx虚拟主机防webshell完美版 nginx.conf
- server
- {
- listen 80;
- server_name www.a.com;
- index index.html index.htm index.php;
- root /data/htdocs/www.a.com/;
- #limit_conn crawler 20;
- location ~ .*.(php|php5)?$
- {
- #fastcgi_pass unix:/tmp/php-cgi.sock;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fcgi.conf;
- }
- }
- server
- {
- listen 80;
- server_name www.b.com;
- index index.html index.htm index.php;
- root /data/htdocs/www.phpfensi.com/;
- #limit_conn crawler 20;
- location ~ .*.(php|php5)?$
- {
- #fastcgi_pass unix:/tmp/php-cgi.sock;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- include fcgi.conf;
- }
- }
Tags: apache nginx 无执行权限
相关文章
- ·在apache下限制每个虚拟主机的并发数(2013-11-14)
- ·APACHE禁止图片盗链(2013-11-14)
- ·Apache下的虚拟主机设置(2013-11-14)
- ·Apache中禁止IP段,在httpd.conf中的写法(2013-11-14)
- ·用Apache的rewrite生成伪静态页面(2013-11-14)
- ·HTTP/Apache 错误代码汇总(2013-11-14)
- ·Apache性能优化技巧(2013-11-22)
- ·用Session代替Apache服务器验证(2013-11-22)
- ·Apache中httpd.conf的中文件详解(2013-11-22)
- ·Apache中.Htaccess文件的功能写法(2013-11-22)
- ·如何让apache支持.htaccess并设置404错误页(2013-11-22)
- ·apache 虚拟主机配置[别名配置方法](2013-11-22)
- ·apache 服务器网站不能访问(2013-11-22)
- ·apache教程:.htaccess用法(2013-11-22)
- ·Apache二级域名配置方法(2013-11-22)
- ·apache 封IP基础教程(2013-11-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)