很长一段时间我在我的域名上安装了wordpress博客,指向这样的网址
http://www.domainname.com/xxxx/blogs/
现在我已转移到新托管,我已按以下方式设置博客
http://www.domainname.com/blog
当我在搜索引擎中搜索时,搜索引擎已将我早期的网址编入索引。
有没有简单的方法可以从旧网址重定向到新网址。
提前致谢
KARTHIK
答案 0 :(得分:1)
您必须放置.htaccess文件并将其设置为重定向。 .htaccess文件将在您的public_html中。
RewriteEngine on
RewriteRule ^/XXXX/blogs/(.*)$ /blog/$1 [R]
这应该......