查看詳情
將子域名重寫顯示子目錄的內容
2012-07-30
Appache
URL重寫
分享一個 URL Rwrite 的技術, 將子域名重寫輸出顯示為子目錄的內容
例如:
http://hello.cambyliverson.com
你會看見/hello目錄中的內容
但網址會保留顯示 http://hello.cambyliverson.com
以下是相關的 Rewrite 代碼
RewriteCond %{HTTP_HOST} ^[www\\.]*sub-domain-name.domain-name.com [NC]
RewriteCond %{REQUEST_URI} !^/sub-domain-directory/.*
RewriteRule ^(.*) /sub-domain-directory/$1 [L]