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]