概述
Nginx配置我为.php抛出了404,如:
## Any other attempt to access PHP files returns a 404.
location ~* ^.+.php${
return 404;
}
但是我在子文件夹中有一些index.php文件,我想运行它.当前配置如下:
location = /sitename/subpage/index.php {
fastcgi_pass phpcgi; #where phpcgi is defined to serve the php files
}
location = /sitename/subpage2/index.php {
fastcgi_pass phpcgi;
}
location = /sitename/subpage3/index.php {
fastcgi_pass phpcgi;
}
它工作得很好,但问题是重复的位置,如果有很多子页面,那么配置变得很大.
我尝试了像*和一些正则表达式的通配符,它说nginx测试通过但是没有加载页面,即404.我尝试的是:
location = /sitename/*/index.php {
fastcgi_pass phpcgi;
}
location ~* ^/sitename/[a-z]/index.php${
fastcgi_pass phpcgi;
}
我有什么方法可以在该位置使用正则表达式或通配符?
最后
以上就是平常音响为你收集整理的nginx php的路径匹配,位置路径中的Nginx通配符/正则表达式的全部内容,希望文章能够帮你解决nginx php的路径匹配,位置路径中的Nginx通配符/正则表达式所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复