I have the following in my HTACCESS file:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [QSA,L]
Now for a domainname I ordered a SSL certificate and need to add the following to the HTACCESS file:
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
Can I just add these lines or should I rewrite the HTACCESS. If yes how should it look like? Thank you in advnce