如何将所有URL重定向到apache中的新域,除了一个

时间:2012-05-17 03:25:18

标签: apache .htaccess redirect

我需要将一个站点上的所有内容重定向到一个新域,除了一个路径。

所以domain.com/anything需要转到newdomain.com/anything。

但我不希望domain.com/services/xml重定向。

我尝试了很多条件,但没有任何作用。它总是最终重定向它,或者将它重定向到新域上的其他奇怪路径。

这不起作用:

RewriteCond %{REQUEST_URI} !^/services/xml$
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]

感谢任何帮助。感谢。

2 个答案:

答案 0 :(得分:1)

然后试试这个:

RewriteCond %{REQUEST_URI} !^/services/xml
RewriteCond %{HTTP_HOST} .*
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [L,R=301]

答案 1 :(得分:1)

我想出了这一点,感谢我与Ansari的对话以及托管公司的一些帮助。问题似乎是url被重写为index.php,然后在此之后再次被重定向。所以:

  RewriteCond %{REQUEST_URI} !^/services/xmlrpc
  RewriteCond %{REQUEST_URI} !index\.php$ [NC]
  RewriteRule ^(.*)$ http://www.wikiweightscore.com/$1 [L,R=301]

  RewriteCond %{REQUEST_FILENAME} !-f 
  RewriteCond %{REQUEST_FILENAME} !-d 
  RewriteCond %{REQUEST_URI} !=/favicon.ico 
  RewriteRule ^(.*)$ index.php?q=$1 [QSA] 

这适用于我想要的确切用例。