URL重写-为特定端口附加子域

问题描述

| 我正在尝试找出使用mod_rewrite更改URL的最佳方法: http://本地主机:8081 至: http:// localhost:8081 /子域 我只希望它与该特定端口号匹配时进行重定向。     

解决方法

        这个怎么样:
<VirtualHost *:8081>
    ServerName host.domain.com
    RewriteEngine     On
    RewriteRule       ^(.*)$        http://host.domain.com:8081/subdomain/$1  [P]
</VirtualHost>