0

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

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

当我导航到 URL http://current.mydomain.com/reg时,我只收到一个空白页。Helicon 似乎没有将请求转发到其他站点。任何想法为什么?

4

1 回答 1

0

尝试使用以下内容:

RewriteEngine on
RewriteBase /

RewriteCond %{HTTP:Host} ^current\.mydomain\.com$ [NC]
RewriteRule ^reg http://another.mydomain.com/registration [NC,P]
于 2012-05-10T09:22:48.170 回答