首页 行业资讯 宠物日常 宠物养护 宠物健康 宠物故事

nginx 实现用户输入www.abc.com,转到www.abc.com/5ox.html

发布网友 发布时间:2022-04-26 18:43

我来回答

1个回答

热心网友 时间:2023-10-21 15:32

修改配置文件,把默认首页从index.html改成5ox.html就可以了。

比如我刚刚下载了一份,然后默认的配置文件里有这么几行:

    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
        }

        #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;
        }

这时候,把其中的"index index.html index.htm;"

改为"index 5ox.html"就可以了。

追问我的是这样配置的,tomcat+nginx返向代理但是会出现502报错,没有显示自己的友好链接

追答

如果你是tomcat+nginx反向代理的话,location这个地方应该是tomcat的地址啊,那默认主页就不应该改动nginx的配置文件,而应该去修改tomcat的web.xml配置文件。或者那个站点的web.xml文件。

例如,把上图中的index.html改为5ox.html

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com