Complete noob when it comes to server configuration stuff, I’m a designer with a request from a client and I’m having issues.
I need to rewrite the url from http to https. I found how to do this using .htaccess. This is the only code in my htaccess file:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteCond %{REQUEST_URI} secure
RewriteRule ^(.*)$ https://www.factoryconnection.com/secure/$1 [R,L]
The two pages in the directory are https://www.factoryconnection.com/secure/contact_fc.html and https://www.factoryconnection.com/secure/myfcsuspension.html.
With the rewrite turned on, firefox gives me the this error: “Firefox has detected that the server is redirecting the request for this address in a way that will never complete.”
Any help would be greatly appreciated! Thanks in advance!