我的螺旋文件中定义了以下规则:
RewriteEngine on
RewriteCond %{HTTP:Host} ^current.mydomain.com$ [NC]
RewriteRule /reg http://another.mydomain.com/registration [NC, P]
当我导航到网址http://current.mydomain.com/reg时,我只收到一个空白页面。 Helicon似乎并未将请求转发给其他站点。有什么想法吗?
答案 0 :(得分:0)
尝试使用以下内容:
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP:Host} ^current\.mydomain\.com$ [NC]
RewriteRule ^reg http://another.mydomain.com/registration [NC,P]