2012-01-04 120 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]