1

Google 已将 subdomain.thedomain.com/directory 编入索引

我希望它重定向到 thedomain.com

.htaccess 文件中有什么内容?我找到了所有其他组合,但这个

请帮忙!

提前感谢,非常感谢

4

1 回答 1

0

您没有找到正确的文档。读这个:

http://httpd.apache.org/docs/2.4/en/rewrite/remapping.html#movehomedirs

更新:

首先,将其写入directory/.htaccess

RewriteEngine on
RewriteRule .* http://thedomain.com/ [R,L,NE]

.*意味着任何东西,并且因为规则来自.htaccess文件,所以这实际上意味着这个目录中的任何东西。

总而言之,这意味着:使用括号中的选项将该目录中的任何内容重定向到主页(这将起作用)。

于 2013-10-31T03:46:21.197 回答