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