Helicon ISAPI重写代理不转发请求

时间:2012-05-09 08:43:50

标签: proxy isapi-rewrite

我的螺旋文件中定义了以下规则:

RewriteEngine on
RewriteCond %{HTTP:Host} ^current.mydomain.com$ [NC]
RewriteRule /reg http://another.mydomain.com/registration [NC, P]

当我导航到网址http://current.mydomain.com/reg时,我只收到一个空白页面。 Helicon似乎并未将请求转发给其他站点。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

尝试使用以下内容:

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP:Host} ^current\.mydomain\.com$ [NC]
RewriteRule ^reg http://another.mydomain.com/registration [NC,P]