帮助htaccess重定向重写规则

时间:2009-07-20 19:26:32

标签: .htaccess url-rewriting mod-rewrite

我想使用Helicon ISAPI Rewrite将旧网址重定向到新网址,但仅限于虚拟目录命名颜色:

http://www。的 mydomain.com /colors/default.aspx?id=blue

需要重定向到

http://www。的 newdomain.org /colors/default.aspx?id=blue

我是新手,无法找到合适的例子,所以任何帮助都会受到赞赏。

2 个答案:

答案 0 :(得分:1)

Helicon ISAPI Rewrite似乎共享mod_rewrite的语法,因此:

RewriteCond %{HTTP_HOST} www\.mydomain\.com
RewriteCond %{HTTP_URL} ^/colors
RewriteRule ^(.*)$ http://www.newdomain.org/$1 [R]

答案 1 :(得分:0)

这是另一种可能性:

RewriteBase /
RewriteCond %{HTTP_HOST} ^(?:www\.)?mydomain\.com$ [NC]
RewriteRule ^(colors/.*)$ http://www.newdomain.org/$1 [NC,R=301,L]