htaccess仅将文件夹重定向到新域索引

时间:2015-11-04 13:22:41

标签: apache .htaccess redirect

我看了看,无法找到答案,我非常感谢你的帮助!!

我在虚拟域上的文件夹中设计了一个网站,忘了添加" noindex"现在它已编入索引,我需要将该文件夹中的所有页面重定向到新域的索引。 例: http:// dummysite / clientsfolder / (我必须在这里放置空间,因为我不能发布2个链接)

重定向到http://clientsnewdomain.com

我找到的所有代码都重定向到http://clientsnewdomain.com/clients文件夹,无论我将其放在/ clients文件夹还是http://dummysite/ 然后这会导致404页面。在这里搞得一团糟。

首先,哪个更好用来避免这个问题? 在 还是robots.txt?

1 个答案:

答案 0 :(得分:0)

/clientsfolder/.htaccess

中使用它
RewriteEngine on 
RewriteRule ^(.*)$ http://clientsnewdomain.com/$1 [R=301,L]

.htaccess中的OR:

RewriteRule ^clientsfolder/(.*)$ http://clientsnewdomain.com/$1 [NC,R=301,L]

首先避免此问题的最佳位置是使用robots.txt 但我更喜欢使用受密码保护的文件夹。