我需要在.htaccess文件中重定向两次。首先,将www重定向到https,然后将/index.html重定向到根/。到目前为止,仅完成了从www到https的第一次迁移,它看起来像这样:
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^(.*)$ https:/mywebpage/$1 [R=301,L]
RewriteCond %{HTTP_HOST} ^www.mywebpage\.com$ [NC]
RewriteRule ^(.*)$ https://mywebpage/$1 [R=301,L]
如何在上述文件中包含/index.html到/重定向的内容?