在.htaccess文件中添加以下代码即可。
RewriteEngine OnRewriteCond %{http_host} ^dz.com [NC]RewriteRule ^(.*)$ http://www.dz.com/$1 [L,R=301]
RewriteEngine On
RewriteCond %{http_host} ^dz.com [NC]
RewriteRule ^(.*)$ http://www.dz.com/$1 [L,R=301]
注:dz.com为你的旧地址,www.dz.com为301跳转的新地址。