.htaccess仅重定向主页

时间:2011-11-18 14:35:50

标签: .htaccess redirect

我只需要使用htaccess重定向主页面,因为我在其他文件夹中有其他重定向。

我试过

RewriteCond %{HTTP_HOST} ^www\.example\.com$ [OR]
Rewritecond %{http_host} ^example.com [nc]
Rewriterule ^(.*)$ http://www.test.com/home/$1 [r=301,nc]

但它会重定向整个网站,导致后续目录中的其余重定向无效。

真正感谢任何帮助。

2 个答案:

答案 0 :(得分:0)

您的规则^(.*)$表示任何网址都会重定向到http://www.test.com/home/$1;我想你只想重定向/home/*而不是其他目录,是吗? 在这种情况下,我认为您只需将规则更改为/home而不是.*

否则请给我们一些更多的信息,因为这意味着我不明白你的问题

答案 1 :(得分:0)

RewriteEngine On
RewriteCond %{HTTP_HOST} ^expertshouse\.se?$ [NC]
RewriteRule ^(|/|/index.php)$ http://expertshouse.wix.com/home/ [R=301,L]