首页 > 教程 >
nginx禁止dedecms目录php执行权限的配置
2023-02-23教程围观次
简介为了织梦dedecms的安全性,我们常常会禁止一些目录中php的执行权限,下面就是在nginx下禁止dedecms目录php执行权限的配置方法。如下配置即可:location~/mm/(data|uploads|templets)/*.(php)${denyall;}location~.php${try_files$uri/404.html;fastcgi_pass127.0.0.1:9000;f
为了织梦dedecms的安全性,我们常常会禁止一些目录中php的执行权限,下面就是在nginx下禁止dedecms目录php执行权限的配置方法。
如下配置即可:
location ~ /mm/(data|uploads|templets)/*.(php)$ {deny all;}location ~ .php$ {try_files $uri /404.html;fastcgi_pass 127.0.0.1:9000;fastcgi_index index.php;fastcgi_param _FILENAME $document_root$fastcgi_ _name;includefastcgi_params;} |
说明:我的dedecms是安装在mm目录下的,如果你安装在根目录,要删除mm ,
完成!
下载链接:网站源码/小程序源码/网站模板下载