2012-01-04 124 views

回答

1

嘗試添加以下到您的example.com域的根目錄中的htaccess文件

RewriteEngine on 
RewriteBase/

#if the host is anything.example.com 
RewriteCond %{HTTP_HOST} ^([^\.]+)\.example\.com$ [NC] 
#send all requests to test.php 
RewriteRule .* test.php?id=%1 [L]