目前,我使用 .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 目錄。我只想要一級子網域。