MyBB Community Forums

Full Version: .htaccess redirrection
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

i have SSL on my hosting and i want to automatically redirrect ; no matter what type in browser: with or without

http:// and (or) www.

redirrect in to

https://

Thank you in advance and cheers !
Add this to your .htaccess file

RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}