1 回答

TA貢獻(xiàn)1934條經(jīng)驗(yàn) 獲得超2個(gè)贊
nginx綁定多個(gè)域名可又把多個(gè)域名規(guī)則寫一個(gè)配置文件里,也可又分別建立多個(gè)域名配置文件,我一般為了管理方便,每個(gè)域名建一個(gè)文件,有些同類域名也可又寫在一個(gè)總的配置文件里。一、每個(gè)域名一個(gè)文件的寫法 首先打開nginx域名配置文件存放目錄:/usr/local/nginx/conf/servers ,如要綁定域名www.rodine.org 則在此目錄建一個(gè)文件:www.rodine.org.conf然后在此文件中寫規(guī)則,如:server
1 2 3 4 5 6 7 | { listen 80; server_name www.rodine.org; #綁定域名 index index.htm index.html index.php; #默認(rèn)文件 root /home/www/rodine.org; #網(wǎng)站根目錄 include location.conf; #調(diào)用其他規(guī)則,也可去除 } |
然后重起nginx服務(wù)器,域名就綁定成功了nginx服務(wù)器重起命令:/etc/init.d/nginx restart二、一個(gè)文件多個(gè)域名的寫法一個(gè)文件添加多個(gè)域名的規(guī)則也是一樣,只要把上面單個(gè)域名重復(fù)寫下來就ok了,如:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | server { listen 80; server_name www.rodine.org; #綁定域名 index index.htm index.html index.php; #默認(rèn)文件 root /home/www/rodine.org; #網(wǎng)站根目錄 include location.conf; #調(diào)用其他規(guī)則,也可去除 }server { listen 80; server_name msn.rodine.org; #綁定域名 index index.htm index.html index.php; #默認(rèn)文件 root /home/www/msn.rodine.org; #網(wǎng)站根目錄 include location.conf; #調(diào)用其他規(guī)則,也可去除 } |
三、不帶www的域名加301跳轉(zhuǎn)如果不帶www的域名要加301跳轉(zhuǎn),那也是和綁定域名一樣,先綁定不帶www的域名,只是不用寫網(wǎng)站目錄,而是進(jìn)行301跳轉(zhuǎn),如:
1 2 3 4 5 6 | server { listen 80; server_namerodine.org; rewrite ^/(.*) http://www.rodine.org/$1 permanent; } |
四、添加404網(wǎng)頁
添加404網(wǎng)頁,都可又直接在里面添加,如:
1 2 3 4 5 6 7 8 9 | server { listen 80; server_name www.rodine.org; #綁定域名 index index.htm index.html index.php; #默認(rèn)文件 root /home/www/rodine.org; #網(wǎng)站根目錄 include location.conf; #調(diào)用其他規(guī)則,也可去除 error_page 404 /404.html; } |
學(xué)會(huì)上面四種規(guī)則方法,基本就可以自己獨(dú)立解決nginx 多域名配置問題了
- 1 回答
- 0 關(guān)注
- 788 瀏覽
添加回答
舉報(bào)