为了账号安全,请及时绑定邮箱和手机立即绑定

nginx如何来修改他的默认主页

nginx如何来修改他的默认主页

莫回无 2019-02-20 14:13:36
nginx如何来修改他的默认主页
查看完整描述

2 回答

?
ibeautiful

TA贡献1993条经验 获得超5个赞


修改nginx的默认页有很多方法,下面介绍两种:

(1)在location中通过index指令设置:此时如果访问127.0.0.1nginx会请求/home/wangwei/webroot/index.html文件并产生响应

1

2

3

4

5

6

7

location ~ \.php$ {

            root            /home/wangwei/webroot;

            index           index.html;

            fastcgi_pass    127.0.0.1:9000;

            include         fastcgi.conf;

            include         fastcgi_params;

        }

(2)通过rewrite指令重定向/请求

1

2

3

4

5

6

7

8

9

10

location ~ \.php$ {

            root            /home/wangwei/webroot;

            index           index.html;

            fastcgi_pass    127.0.0.1:9000;

            include         fastcgi.conf;

            include         fastcgi_params;

             

            #重定向首页.

            rewrite         "^/+$" /xxx.php break;

        }

可以根据需要采用其中的任何一种。


 


查看完整回答
反对 回复 2019-02-26
  • 2 回答
  • 0 关注
  • 4038 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信