Nginx   发布时间:2022-05-11  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了在nginx上重写一个子目录到root大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

假设我有一个站点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?;
    }
}

大佬总结

以上是大佬教程为你收集整理的在nginx上重写一个子目录到root全部内容,希望文章能够帮你解决在nginx上重写一个子目录到root所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: