首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

apache跟ngnix禁止访问文件

2012-09-28 
apache和ngnix禁止访问文件1.ngnixlocation ~ .*\.(inc)${denyall}http://www.lanfeng.net/archives/3055

apache和ngnix禁止访问文件
1.ngnix
location ~ .*\.(inc)$
{
    deny   all;
}
http://www.lanfeng.net/archives/30550.html
2、apache
    <Files ~ "\.inc$">
         Order allow,deny
         Deny from all
    </Files>

http://jingyan.baidu.com/album/4b07be3c193d1648b380f3a9.html?picindex=1&dsp=pc

热点排行