子域重定向到文件夹而不更改 URL

Subdomain redirection to folder without changing URL

我有一个指向主文件夹的主域,如下所示

http://www.primary.com -> /var/www/html/primary

我需要在不将 URL 更改为 http://www.primary.com/sub

的情况下使下面的工作正常进行
http://sub.primary.com -> /var/www/html/sub
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)\.primary\.com$ [NC]
RewriteRule !^(.*)\.primary\.com /%1%{REQUEST_URI}  [NC,NE,L]