MyBB Community Forums

Full Version: [SSL] Force All Files From Http to Https
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys,
i just bought SSL from comodo and already install it.
And how to load all files like Js,Css,Image from http:// to https:// without changes the codes?


Becouse all of images,css,js,ads and many more clound't load if i using http://myforum.com
[Image: 10930933_704775072977293_5511297660770569334_n.jpg]

Thank you.
Sample way

Change bburl from http://yourdomain.Com to https://yourdomain.com


Or edit in htaccess
(2015-01-27, 06:16 PM)rajeevrrs55 Wrote: [ -> ]Sample way

Change bburl from http://yourdomain.Com to https://yourdomain.com


Or edit in htaccess

solved.
i used bburl seting+ force to https
RewriteEngine On 
RewriteCond %{SERVER_PORT} 80 
RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]

Thanks