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

作者:袖梨 2022-06-25

htaccess禁止php,htm

php_flag engine off

 代码如下 复制代码


order allow,deny
deny from all


order allow,deny
deny from all


order allow,deny
deny from all

  
    order allow,deny    
    deny from all    

  
    order allow,deny    
    deny from all    

apache中直接定义

 代码如下 复制代码


php_flag engine off


 
 Order allow,deny
 Deny from all
 

nginx

 代码如下 复制代码

location /data/ {
location ~ .*.(php)?$ {
deny all;
}
}

相关文章

精彩推荐