首页 > 代码库 > nginx,apache屏蔽特定路径下的php,python解析

nginx,apache屏蔽特定路径下的php,python解析

工作中碰到一些目录需要写入数据,为了安全起见需要屏蔽特定路径下的php,python解析。


nginx相关配置:

location ~/(data|sites/upload)/.*\.(php|php5|py|pyc|sh)?$ {

deny all;

}



apache相关配置:

<Directory /usr/local/apache/htdocs/bbs/data>

php_flag engine off

</Directory>

<Directory ~ "^/home/centos/web/data">

 <Files ~ ".php">

 Order allow,deny

 Deny from all

 </Files>

</Directory>


本文出自 “运维者说:从菜鸟到老鸟” 博客,请务必保留此出处http://liuqunying.blog.51cto.com/3984207/1558016

nginx,apache屏蔽特定路径下的php,python解析