Phill Fernandes
New Member
If you want to force SSL everyone on your website just add these rules to a .htaccess file the htdocs (www) root of your webserver.
Hint: This also works on subdomains, just put it in the root of the folder at which the subdomain is pointed to.
Hint: This also works on subdomains, just put it in the root of the folder at which the subdomain is pointed to.
Quote said:RewriteEngine OnRewriteCond %{SERVER_PORT} !^443$RewriteRule .* https://%{SERVER_NAME}%{REQUEST_URI} [R,L]