nginx配置完rewrite瀏覽器提示將您重定向的次數(shù)過多的解決方法
因?yàn)楣疽笤L問 shidongyun.com的時候?yàn)g覽器會自動跳轉(zhuǎn)到www.shidong.com下面,專業(yè)術(shù)語叫“301跳轉(zhuǎn)”百度了一番,nginx配置規(guī)則,用rewrite還有return進(jìn)行重寫301跳轉(zhuǎn)。我這里用的是rewrite。
在配置網(wǎng)站站點(diǎn)的時候service里面的service_name 規(guī)則不正確。錯誤配置規(guī)則如下:
只看service這部分錯誤的即可。service_name 不能把rewrite即將要重寫的域名寫進(jìn)去,這樣就造成了死循環(huán)了。比如:我要訪問"shidongyun.com",利用rewrite在瀏覽器輸入“shidongyun.com”的時候,重寫到www.shidongyun.com下面。那么在service_name就不能寫www.shidongyun.com這個域名??梢詥为?dú)寫一個service,也可以不用寫。直接這樣寫:rewrite ^/(.*) http://www.shidongyun.com/$1 permanent;。
server { listen 80; server_name www.shidongyun.com shidongyun.com; #charset koi8-r; #access_log logs/host.access.log main; root '/data/wwwroot/shidong'; location / {rewrite ^/(.*) http://www.shidongyun.com/$1 permanent;index index.html index.htm index.php l.php;try_files $uri $uri/ /index.php?$query_string; autoindex off; }解決方案1,把service下面的service_name 做正確的修改,刪除www.shidongyun.com這個要重寫的域名。
server { listen 80; server_name shidongyun.com; #charset koi8-r; #access_log logs/host.access.log main; root '/data/wwwroot/shidong'; location / {rewrite ^/(.*) http://www.shidongyun.com/$1 permanent;index index.html index.htm index.php l.php;try_files $uri $uri/ /index.php?$query_string; autoindex off; }在次在瀏覽器訪問:shidongyun.com,我們看到截圖中已經(jīng)成功的重寫過去了。但是訪問域名的時候默認(rèn)找的是網(wǎng)站安裝時候的目錄。并不是項(xiàng)目目錄。解決方案如下:
2,需要配置rewrite重定向到指定的目錄或者單獨(dú)配置一個service虛擬機(jī),然后把需要rewrite重定向的service主機(jī)跟域名配置好。配置信息如下:
我們先配置一個service虛擬機(jī),要訪問的域名,比如“shidongyun.com”,然后在配置一個service虛擬機(jī),把要rewrite重寫的域名放進(jìn)去,比如:“www.shidong.com”,我們達(dá)到的效果就是訪問“shidongyun.com”瀏覽器地址會自動跳轉(zhuǎn)到“www.shidongyun,com”下面。
示例代碼如下:
server { listen 80; server_name shidongyun.com; #charset koi8-r; #access_log logs/host.access.log main; root '/data/wwwroot/shidong'; location / {index index.html index.htm index.php l.php;rewrite ^/(.*) http://www.shidongyun.com/$1 permanent;try_files $uri $uri/ /index.php?$query_string; autoindex off; } 省略多余的部分.....只需要看rewrite跟service_name即可}server { listen 80; server_name www.shidongyun.com; #charset koi8-r; #access_log logs/host.access.log main; root '/data/wwwroot/shidong'; location / {index index.html index.htm index.php l.php;try_files $uri $uri/ /index.php?$query_string; autoindex off; }省略多余的部分.....只需要看service_name即可。root設(shè)置項(xiàng)目路徑。 }重啟nginx服務(wù)器1, /etc/init.d/nginx restart
[root@iZm5e8nyz28v9zr7lhb7moZ ~]# /etc/init.d/nginx restartnginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successfulStopping nginx: [ OK ]Starting nginx: [ OK ][root@iZm5e8nyz28v9zr7lhb7moZ ~]#2,瀏覽器輸入“shidongyun.com”自動跳轉(zhuǎn)到“www.shidongyun.com”下面
到此這篇關(guān)于nginx配置完rewrite瀏覽器提示將您重定向的次數(shù)過多的解決方法的文章就介紹到這了,更多相關(guān)nginx rewrite重定向內(nèi)容請搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
