мой .htaccess выглядит так:
RewriteEngine on
RewriteOptions MaxRedirects=10
RewriteBase /
#if file not exists
RewriteCond %{REQUEST_FILENAME} !-f
#if folder not exists
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?action=$1 [QSA]
Как я могу изменить его, чтобы перенаправить HTTP на HTTPS?Спасибо!