子域重定向到文件夹名称为 .htaccess 的子目录

Subdomain redirect to the sub directory with folder name .htaccess

是否可以使用 .htaccess 将子域重写为这样的目录?

示例:

http://sub.example.com/

http://sub.example.com/mycategory

显示

的内容

http://example.com/subdomains/index.php?user=sub

http://example.com/subdomains/category.php?user=sub

我将其用于第一个示例,但未使用类别示例,

RewriteEngine on
RewriteCond %{HTTP_HOST} ^sub.domain.com
RewriteRule ^(.*)$ /subdomains/index.php?user= [L,NC,QSA]

这不起作用,

RewriteRule ^(.*)/mycategory$ /subdomains/category.php?user= [L,NC,QSA]

对于第一个条件使用,

RewriteRule ^()$ /subdomains/index.php?user=

并且对于第二个条件使用,

RewriteRule ^mycategory$ /subdomains/category.php?user=