1

在 cPanel 服务器上工作。我需要将帐户的域根目录重定向到一个新的子目录,但不理会其他子目录,其中许多子目录用作同一帐户上其他网站的附加域。

domain1.com 使用 ./public_html/ 需要重定向到 public_html/newdir

domain2.com 使用 public_html/subdir

domain2.com 是这种方式的众多设置之一。

试过这个,但它不适用于 domain2.com。

RewriteCond %{REQUEST_URI} ^/[/]?$
RewriteRule (.*) /newdir [R=301,L]

谢谢

4

1 回答 1

0

I tried to redirect my main domain to my blog and not my sub-directory, below rule work for me.

 RewriteEngine on
 RewriteCond %{REQUEST_URI} !^/exclude-directory/.*$
 RewriteRule ^(.*)$ http://redirect-to-domain.name/$1 [R=301,L]

!!!!

于 2014-05-12T21:36:12.407 回答