Administrator Posted June 17, 2013 Posted June 17, 2013 There are a few options available, depending on your specific setup and configuration. RewriteEngine OnRewriteCond %{HTTPS} !^on$RewriteRule (.*) https://yourdomain/$1 [R,L] RewriteEngine onRewriteCondition %{SERVER_PORT} !^443$RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L] Load balancer options <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP:X-Forwarded-Proto} !https RewriteRule (.*) https://yourdomain.com/$1 [R=301,L]</IfModule>
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now