
2007-08-19, 09:21 PM
|
|
高级会员
|
|
Join Date: 2006-01-05
Posts: 368
|
|
Rewrite a sub domain to a directory
.htaccess works:
Quote:
RewriteCond %{HTTP_HOST} ^[www\.]*sub-domain-name.domain-name.com [NC]
RewriteCond %{REQUEST_URI} !^/sub-domain-directory/.*
RewriteRule ^(.*) /sub-domain-directory/$1 [L]
|
|