nginx重写:如果$uri 不是文件不是目录 跳转到$uri/

发布于 2022-08-30 15:57:22 字数 2306 浏览 13 评论 0

配置

nginx 1.6.2

要求

访问

$uri 

如果

1)如果 存在文件 /Vhost/$http_host/$uri ,访问的是该文件
2)否则 如果 $uri 不是以 “/” 结尾 301 跳转到 $uri/
3)否则 如果 $uri 以 “/” 结尾 且 存在 /Cache/$http_host/$uri/index.html ,访问的是该文件
4)否则 指向 /index.php (ThinkPHP框架)

例子

访问 http://www.a.com/robots.txt -> /Vhost/www.a.com/robots.txt
访问 http://a.com/robots.txt ->301 跳转 ->  http://www.a.com/robots.txt
访问 http://www.c.com/sitemap.html -> /Vhost/www.c.com/sitemap.html
访问 http://www.d.com/game/ -> /Cache/www.d.com/game/index.html
访问 http://www.d.com/news/1000011 -> 301 跳转到  -> http://www.d.com/news/1000011/
访问 http://www.d.com/news/1000011/ -> /index.php (当该/Cache/www.d.com/news/1000011/index.html 不存在的时候)
访问 http://www.d.com/news/1000011/ -> /Cache/www.d.com/news/100011/index.html (当该/Cache/www.d.com/news/1000011/index.html 存在的时候)

配置

server {
    listen       80;
    server_name  wap wap.loc m.wap.loc wap.loc m.xxx.com game1.wap.loc game2.wap.loc game3.wap.loc;

    location / {
        root   d:/wap_dev;
        index  index.html index.htm index.php;          
        try_files $uri /Vhost/$http_host/$uri /Cache/$http_host/$uri/index.html /index.php?s=$uri&$args;            

        location ~ \.php$ {
            try_files $uri =404;
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            include        fastcgi_params;    
        }
    }


    #error_page  404              /404.html;

    # redirect server error pages to the static page /50x.html
    #

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }

    location ~ /\.(ht|svn|git) {
        deny all;
    }
}

问题

已经实现了上面的1、3、4,还有2未实现。


上面第3)点打错字了,是如下的。已经修改了的,但是sg没有变化

3)否则 如果 $uri 以 “/” 结尾 且 存在 /Cache/$http_host/$uri/index.html ,访问的是该文件

补充

1) 如何才可以 不是 以/结尾且不是以.xml结尾且不是以.html .htm结尾的才跳转

现在是不是以 /结尾的跳转,导致.xml 结尾 .html结尾的也都跳转
自己写了一段,但是失败:

rewrite ([^\/]|\.xml|\.html?)$ $uri/ permanent;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

雪若未夕 2022-09-06 15:57:22

你需要使用一个 @ 开头的 named location 来解决这个问题。

# 如果找不到任何匹配的文件就会进入 @rewrite location 来决定如何 rewrite
try_files $uri /Vhost/$http_host/$uri /Cache/$http_host/$uri/index.html @rewrite;

location @rewrite {
    # 如果末尾不是 /,301 跳转
    rewrite [^\/]$ $uri/ permanent;

    # 默认交给 index.php 来处理
    rewrite . /index.php?s=$uri&$args last;
}
慢慢从新开始 2022-09-06 15:57:22

因爲你的規則自相矛盾。

2)否则 如果 $uri 不是以 “/” 结尾 301 跳转到 $uri/
3)否则 如果 $uri 不是以 “/” 结尾 且 存在 /Cache/$http_host/$uri/index.html ,访问的是该文件

2 和 3 顯然不能同時滿足。

應改成

2) else if $uri 不是以 “/” 结尾 then 301 跳转到 $uri/
3) else if $uri 以 “/” 结尾 and 存在 /Cache/$http_host/$uri/index.html then 访问该文件

實際上等價於

else if $uri 不是以 “/” 结尾 then 301 跳转到 $uri/
else if 存在 /Cache/$http_host/$uri/index.html then 访问该文件
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文