nginx可遍历下载php文件

by Web全栈工程师 on 2016 年 08 月 28 日

解决办法:修改nginx对php的处理

        location ~ /(?<ver>v[1-9])/.*\.php {

            return 404;

        }

        location ~ /(?<ver>v[1-9])/.* {

            try_files $uri $uri/ /index.php?$args;

        }

Comments on this entry are closed.

Previous post:

Next post: