Google已将索引编入subdomain.thedomain.com/directory
我希望将其重定向到thedomain.com
.htaccess文件中包含哪些内容?我找到了所有其他组合,但是这个
请帮忙!
提前致谢,非常感谢
答案 0 :(得分: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
文件,这实际上意味着此目录中的任何内容。
总的来说,这意味着:使用括号中的选项(可以正常工作)将该目录中的任何内容重定向到主页。