在 nginx 上将子目录重写为根目录

在 nginx 上将子目录重写为根目录

假设我有一个网站http://domain/,我将一些文件放在子目录中/html_root/app/,然后使用以下重写规则将该文件夹重写到我的根目录中:

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://domain/app/a-simple-page/

有什么方法可以按照我的规则重定向不带尾部斜杠的 URL 吗?

答案1

典型案例是按照错误的教程来做,而不是阅读维基我强烈建议您阅读有关您(应该)使用的功能(例如 location 和 try_files)以及我的 Nginx 入门因为您完全错过了 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?;
    }
}

相关内容