nginx配置心得

来源:互联网 发布:涵曦瘦身霜有害知乎 编辑:程序博客网 时间:2024/06/02 04:54

1. location \.php$会拦截.php结尾的,用户访问类似 /xxx.php时如果xxx.php会显示file not found, 而不是显示自定义的404页面,要使显示自定义的404页面,图需要在配置中添加如下:

try_files $uri $uri/ /index.php?r=$request_uri&$args /404.php;


0 0
原创粉丝点击