Hi,
We are use EE2.2.4 version. We want to use SSL in our website.
I followed the instruction from http://feistygoat.com/blog/2010/10/force-ssl-in-expressionengine/.
I got error message as below:
The page isn’t redirecting properly
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
This problem can sometimes be caused by disabling or refusing to accept
cookies.
Here is my .htaccess file
RewriteEngine On
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} admin.php
#RewriteCond %{REQUEST_URI} index.php
#RewriteCond %{REQUEST_URI} system
RewriteRule ^(.*)$ https://mycompany.com/$1 [R,L]
Any ideas?
Dan
[Mod Edit: Moved to the Community Help forum]