欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 教育 > 幼教 > window服务器thinkphp6 路由错误index.php

window服务器thinkphp6 路由错误index.php

2024/11/30 5:44:42 来源:https://blog.csdn.net/qq_28546559/article/details/140505377  浏览:    关键词:window服务器thinkphp6 路由错误index.php

一,问题说明

访问——站点/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;
}
————错误的—————

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com