亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

nginx如何來修改他的默認主頁

nginx如何來修改他的默認主頁

莫回無 2019-02-20 14:13:36
nginx如何來修改他的默認主頁
查看完整描述

2 回答

?
ibeautiful

TA貢獻1993條經驗 獲得超6個贊


修改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 關注
  • 4191 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號