这是我的.htaccess for ssl。
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R,L]
这会将我的网站重定向到https,但我有一个子域名为subdomain.mywebsite.com,当我在.htaccess中应用此代码时,它会将我的subdomain.mywebsite.com重定向到 - > https://mywebsite.com/subdomain
但我不希望它将我的子域名重定向到子文件夹。所以我想要的是
https://subdomain.mywebsite.com
我该如何解决这个问题?