0

ヘリコン ファイルで次のルールを定義しています。

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 に答える