Nginx如何配置实现隐藏php后缀
环境:nginx+php-fpm。如题,我现在试了rewrite^(.*)$/$1.php;结果发现直接访问网站不加文件名的时候就会404而不是跳到index.要求是:访...
环境:nginx+php-fpm。
如题,我现在试了rewrite ^(.*)$ /$1.php;
结果发现直接访问网站不加文件名的时候就会404而不是跳到index.
要求是:访问example.com/sth实际为example.com/sth.php;访问example.com实际为example.com/index.php,应该如何实现?
好吧,我已经知道了,请不要再回答了,谢谢
现在我采用的是像这样的代码,希望对大家有所帮助:
if ($request_filename ~ ^/?$){
rewrite ^/?$ /index.php;
}
if (!-e $request_filename){
rewrite ^(.*)$ /$1.php;
} 展开
如题,我现在试了rewrite ^(.*)$ /$1.php;
结果发现直接访问网站不加文件名的时候就会404而不是跳到index.
要求是:访问example.com/sth实际为example.com/sth.php;访问example.com实际为example.com/index.php,应该如何实现?
好吧,我已经知道了,请不要再回答了,谢谢
现在我采用的是像这样的代码,希望对大家有所帮助:
if ($request_filename ~ ^/?$){
rewrite ^/?$ /index.php;
}
if (!-e $request_filename){
rewrite ^(.*)$ /$1.php;
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询