動態子域我有一個像用的.htaccess和PHP
index.php?username=thurein
一個網頁,我需要與子域獲得像
thurein.mydomain.com
我怎麼能走呢?
我做喜歡..
RewriteEngine on
RewriteCond %{HTTP_HOST} !^mydomain.com [NC]
RewriteCond %{HTTP_HOST} ^(www.)?([^.]+).mydomain.com [NC]
RewriteRule ^$ /index.php?username=%2 [QSA]
但我無法通過其他變量。 像...
thurein.mydomain.com/photos/1
我要的是這個URL重新寫入..
index.php?username=thurein&page=photos&id=1
感謝
如果你能幫助我。我做的確實適合它。
[.htaccess通配符子域名]的可能重複(http://stackoverflow.com/questions/1059441/htaccess-wildcard-subdomains) – 2010-08-09 08:51:39