0
我試圖找出最佳的方式來使用mod_rewrite從更改URL:URL重寫 - 追加子域特定端口
到:
http://localhost:8081/subdomain
我只想讓它重新定向,如果它匹配那個特定的端口號。
我試圖找出最佳的方式來使用mod_rewrite從更改URL:URL重寫 - 追加子域特定端口
到:
http://localhost:8081/subdomain
我只想讓它重新定向,如果它匹配那個特定的端口號。
如何:
<VirtualHost *:8081>
ServerName host.domain.com
RewriteEngine On
RewriteRule ^(.*)$ http://host.domain.com:8081/subdomain/$1 [P]
</VirtualHost>
有時不需要國防部重寫,http://httpd.apache.org/docs/current/rewrite/avoid.html,對於simpel重定向重定向指令上這個VirtualHost會更簡單。 – regilero 2011-06-14 12:03:08