nginx配置后只有根目录首页index.php能访问,其他页面404

只有首页面根目录可以访问,其他页面地址都是404 not found。网上找了半天url重定向,url重写都试了无效,要不就是重定向过多,下图为跳坑历程。

复制代码
 1 location / {
 2                 #if ($http_host !~ “^www\.nginxtest\.com/index\.php$”) {
 3                 
 4                 #if ( !-f $request_filename ) {
 5                 #    rewrite ^/(.+)$ http://www.nginxtest.com/index.php?$1 last;
 6                 #    rewrite ^/(.+)$ http://www.nginxtest.com/index.php/$1 break;
 7                 #}
 8                 
 9                 #if ($http_host ~* "^(.*)\.nginxtest\.com$") {
10                 #    set $domain $1;
11                 #    rewrite ^(.*) http://www.nginxtest.com/$domain/ break;
12                 #}
13                 
14                 #if (-f $request_filename/index.html){
15                 #    rewrite (.*) $1/index.html break;
16                 #}
17                 #if (-f $request_filename/index.php){
18                 #    rewrite (.*) $1/index.php;
19                 #}
20                 #if (!-f $request_filename){
21                 #    rewrite (.*) /index.php;
22                 #}
            
23 try_files $uri $uri/ /index.php?$query_string; 24 if (!-e $request_filename){ 25 rewrite ^/(.*) /index.php last; 26 } 27 28 }
复制代码

最后使用这段代码终于正常了,希望也能帮到大家

1
2
3
4
5
6
7
8
location / {
 
    try_files $uri $uri/ /index.php?$query_string;
    if (!-e $request_filename){ 
        rewrite ^/(.*) /index.php last; 
    }
                 
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

 

posted @   程序生(Codey)  阅读(9948)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列:基于图像分类模型对图像进行分类
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
阅读排行:
· 25岁的心里话
· 闲置电脑爆改个人服务器(超详细) #公网映射 #Vmware虚拟网络编辑器
· 零经验选手,Compose 一天开发一款小游戏!
· 通过 API 将Deepseek响应流式内容输出到前端
· 因为Apifox不支持离线,我果断选择了Apipost!
点击右上角即可分享
微信分享提示