Hi there!
I am up and running an expressionengine site with SSL for the first time. General configurations and all other settings are set to use https:// Working fine except this one thing:
I want to force https:// for everyone who enters a url with http://
This is what my htaccess looks like now - it’s removes index.php from url’s.
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
# If 404s, "No Input File" or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)
</IfModule>Do you know how to do that? I’m no .htaccess-rewrite-wizzard 😊