一,问题说明
访问——站点/index.php/admin/system/global————出现404错误
不想去掉index.php,想要保留这个————必须配置伪静态
默认的伪静态,是不要index.php,用来隐藏index.php,(通过伪静态加index.php)
————————显然不能满足要求————————————
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
————————显然不能满足要求————————————
1,nginx不支持pathinfo————必须配置伪静态
2, 调试方法————重定向——打印出正则匹配的内容
3,错误原因————路径不存在————导致默认404.html重定向了
——————window服务器使用nginx可能有问题——————————
检查正则匹配问题,通过重定向来查看
rewrite ^/index\.php(.*)$ /absdf?s=$1 permanent;
——————亲测有效————————
#实际配置内容如下
rewrite ^/index\.php/(.*)$ /index.php?s=/$1 last; break;
——————亲测有效————————
————错误的————不能使用location / ,这个会被拦截,不会生效
因为——下面的正则表达式无法匹配
location / {
rewrite ^/index\.php/(.*)$ /index.php?s=/$1 last; break;
}
————错误的—————