MyBB Community Forums

Full Version: How to make forum redirect from http to https
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to redirect from http to https.


1. redirect http://example.com to https://www.example.com
2. redirect http://www.example.com to https://www.example.com
3. redirect https://example.com to https://www.example.com

Like facebook, google ??

Please help me with code in .htaccess or another
2 seconds with google and I get http://www.besthostratings.com/articles/...ccess.html

RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]