热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

apache指定目录禁止执行php文件

本文章来给大家介绍在apache环境中如何禁止指定目录执行php,htm,asp文件的方法,下面我介绍利用apache,hatccess的方法,同时还有nginx中的配置方法。

本文章来给大家介绍在apache环境中如何禁止指定目录执行php,htm,asp文件的方法,下面我介绍利用apache,hatccess的方法,同时还有nginx中的配置方法。

htaccess禁止php,htm

php_flag engine off

  1. ".php"
  2. order allow,deny 
  3. deny from all 
  4.  
  5. ".htm"
  6. order allow,deny 
  7. deny from all 
  8.  
  9. ".html"
  10. order allow,deny 
  11. deny from all 
  12.  
  13.    
  14.     order allow,deny     
  15.     deny from all     
  16.  
  17.    
  18.     order allow,deny     
  19.     deny from all     
  20.  

在apache中直接定义

  1.  
  2. php_flag engine off 
  3.  
  4. "^/home/centos/web/data"
  5.  ".php"
  6.  Order allow,deny 
  7.  Deny from all 
  8.   
  9.  

nginx

  1. location /data/ { 
  2. location ~ .*.(php)?$ { 
  3. deny all; 

推荐阅读
author-avatar
林伯勋玉萍竣梅
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有