linux設置301重定向的方法:
設置.htaccess文件,在.htaccess文件里寫上以下代碼即可。
RewriteEngine onRewriteCond %{http_host} ^123.com [NC]RewriteRule ^(.*)$ http://www.123.com/$1 [L,R=301]
RewriteEngine on
RewriteCond %{http_host} ^123.com [NC]
RewriteRule ^(.*)$ http://www.123.com/$1 [L,R=301]