目前,我正在使用 .htaccess 文件将所有子域名重定向到特定文件夹。下面我提到了我的 .htaccess 文件代码
<IfModule mod_rewrite.c>
RewriteEngine On
# Redirection of subDomain to v1 subdirectory
RewriteCond %{HTTP_HOST} ^[^.]+\.abc\.com$
RewriteRule ^(.*)$ /v1/$1 [END,NE,R=permanent]
</IfModule>
问题是如果有人输入错误的子域名 URL(例如 123.122.abc.com),那么这也会重定向到 /v1 目录。我只想要一级子域名。