我如何将我的网站(即subdomain.domainname.com)重定向到https而不在前面放置www,这是我的htaccess代码
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
默认情况下,当用户访问subdomain.domainname.com时应使用https
配置中断