在子域名上重写 .htaccess 以使用 https

在子域名上重写 .htaccess 以使用 https

我目前正在dev.example.comdev子文件夹托管子域并使用以下.htaccess规则:

RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www.)?dev.example.com$
RewriteCond %{REQUEST_URI} !^/dev/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /dev/$1
RewriteCond %{HTTP_HOST} ^(www.)?dev.example.com$
RewriteRule ^(/)?$ dev/index.html [L]

我购买了 SSL 并想更改.htaccess规则以支持 HTTP 和 HTTPS 访问,因为https://dev.example.com这触及了我的托管的根源。

有人能提供一种改变它的方法吗?

相关内容