如何将示例URL转换为所需的URL?
From
http://test.at.domain.com
To
http://domain.com/at/index.php?id=test发布于 2011-05-28 13:14:27
RewriteEngine on
RewriteCond %{HTTP_HOST} (\w+).at.domain.com [NC]
RewriteRule .* http://domain.com/at/index.php?id=%1 [L]https://stackoverflow.com/questions/6159794
复制相似问题