我想将 www.domain.com/s/index.php?s=test 重写为 test.domain.com
我使用以下方法在本地主机中成功完成了它。
RewriteCond %{HTTP_HOST} ^([^\.]+)\.localhost$ [NC]
RewriteRule ^$ /s/index.php?s=%1 [L]
但是,当我把它放在我的服务器上时,它没有工作。下面是代码
RewriteCond %{HTTP_HOST} ^([^\.]+)\.domain\.com$ [NC]
RewriteRule ^$ /s/index.php?s=%1 [L]
什么地方出了错?欣赏建议。