只是想知道是否可以在我的htaccess文件中使用带有文件夹的通配符域。
例如重定向(^。*)。test.com/myfolder/到folder / test.php?id = $ 1
这是我到目前为止,但不知道如何在URL之后添加文件夹:
RewriteCond %{HTTP_HOST} ^(^.*)\.test\.com
RewriteRule ^ folder/test.php?id=%1
谢谢!
答案 0 :(得分:0)
您可以尝试以下规则:
RewriteBase /
RewriteCond %{HTTP_HOST} ^(.*)\.test\.com
RewriteRule ^$ folder/test.php?id=%1
我们将http://www.test.com/
重写为http://www.test.com/folder/test.php?id=www
这是你想要的吗?