nginx301重定向的方法:
在nginx安裝目錄下執行 vim conf/nginx.conf 打開配置文件,添加一下代碼:
server {# 301listen 80;server_name xxxx.com;rewrite ^/(.*) http://www.xxxx.com/$1 permanent;}
server {
# 301
listen 80;
server_name xxxx.com;
rewrite ^/(.*) http://www.xxxx.com/$1 permanent;
}
該代碼意思為:對于請求xxxx.com都重定向到www.xxxx.com,并且攜帶所有路徑和參數定向。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529