Windows XP Windows 7 Windows 2003 Windows Vista Windows教程綜合 Linux 系統教程
Windows 10 Windows 8 Windows 2008 Windows NT Windows Server 電腦軟件教程
 Windows教程網 >> 電腦軟件教程 >> 服務器技術 >> 關於服務器 >> nginx設置301重定向的方法

nginx設置301重定向的方法

日期:2017/2/8 10:16:14      編輯:關於服務器
看到有人在問nginx301重定向的設置方法,肯定有很多人在用軍哥的LNMP,現在把nginx設置301重定向的方法分享出來!
將下面紅色代碼部分加入 主機所對應的 XXX.conf 內
www.45it.com是你確定要用的唯一網址

server
{
listen 80;
server_name www.45it.com.cn 45it.com.cn www.45it.net 45it.net  www.45it.com 45it.com;
if ($host != 'www.45it.com' ) {
rewrite ^/(.*)$ http://www.45it.com/$1 permanent;
}
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/xxx;

紅色代碼解釋 如果主機頭不為www.45it.com 那麼就統一跳轉至www.45it.com
Copyright © Windows教程網 All Rights Reserved