首页 Nginx 在nginx上重写一个子目录到root

在nginx上重写一个子目录到root

假设我有一个站点http:// domain /并且我将一些文件放在子目录/ html_root / app /中,并使用以下重写规则将此文件夹重写到我的root:location / { root /html_root; index index.php index.html index.htm; # Map http://doma

假设我有一个站点http:// domain /并且我将一些文件放在子目录/ html_root / app /中,并使用以下重写规则将此文件夹重写到我的root:

location / {
    root /html_root;
    index index.php index.html index.htm;

    # Map http://domain/x to /app/x unless there is a x in the web root.
    if (!-f $request_filename){
        set $to_root 1$to_root;
    }
    if (!-d $request_filename){
        set $to_root 2$to_root;
    }
    if ($uri !~ "app/"){
        set $to_root 3$to_root;
    }
    if ($to_root = "321"){
        rewrite ^/(.+)$/app/$1;
    }

    # Map http://domain/ to /app/.
    rewrite ^/$/app/ last;
}

我知道这不是一个聪明的方法因为我有另一个子目录/ html_root / blog /我希望它可以通过http:// domain / blog /访问.

我的问题是,上面的重写规则工作正常,但仍有一些问题:如果我访问

http:// domain / a-simple-page /(它从http:// domain / app / a-simple-page /重写)

它工作正常,但如果我访问

http:// domain / a-simple-page(不带斜杠),重定向到原始地址:

HTTP://网域/应用/ A-简单页/,

任何方式重定向URL而不用尾随斜杠遵循我的规则?

最佳答案
遵循右下错误教程而非reading the wiki的经典案例我强烈建议您阅读有关您(应该)使用的功能(例如location和try_files)以及my Nginx primer,因为您完全错过了Nginx的基础知识.

我试图用正确的格式写出你想要的东西,但我不能保证它会起作用,因为我不确定我真的明白你要做什么,不过,它应该给你一个基础从一开始.

server {
    listen 80;
    server_name foobar;

    root /html_root;
    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ @missing;
    }

    location /app {
        # Do whatever here or leave empty
    }

    location @missing {
        rewrite ^ /app$request_uri?;
    }
}

本文来自网络,不代表云浮站长网立场。转载请注明出处: https://www.0766zz.com/html/yunying/nginx/20200901/8538.html
上一篇
下一篇

作者: dawei

【声明】:云浮站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

返回顶部