K7

K7Blog

须知少年凌云志 曾许人间第一流.
proton
telegram

禁止多个目录运行PHP程序

Apache 环境在上传目录添加配置文件.htaccess 使上传目录不可运行 PHP 程序(默认已经存在)

<FilesMatch "\.(?i:php|php3|php4|php5)">
Order allow,deny
Deny from all
</FilesMatch>

Nginx 环境禁止多个目录运行 PHP 程序:

    # "i|public"是你要禁止的目录 放到listen段落之后才生效
    location ~* ^/(i|public)/.*\.(php|php5)$
   {
      deny all;
    }

Lighthttpd 环境禁止多个目录运行 PHP 程序:

$HTTP["url"] =~ "^/(i|public)/" {
	fastcgi.server = ()
}

或者参考:https://blog.png.cm/996.html

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.