Mod重写通配符文件夹

时间:2016-01-20 09:05:31

标签: php apache .htaccess mod-rewrite

只是想知道是否可以在我的htaccess文件中使用带有文件夹的通配符域。

例如重定向(^。*)。test.com/myfolder/到folder / test.php?id = $ 1

这是我到目前为止,但不知道如何在URL之后添加文件夹:

RewriteCond %{HTTP_HOST} ^(^.*)\.test\.com
RewriteRule ^ folder/test.php?id=%1

谢谢!

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

这是你想要的吗?