If you find yourself wanting to have Bloxby use SSL instead of regular HTTP, you can modify your .htaccess file to redirect all URL’s to their https version. To achieve this, change the following lines:
RewriteEngine ON
RewriteBase /
to:
RewriteEngine ON
RewriteBase /
RewriteCond %{HTTPS} !=on
RewriteRule ^.*$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301]
Then in the ‘application/config/config.php’ change:
$config['base_url'] = 'http://yourwebsitediman.com/';
to:
$config['base_url'] = 'https://yourwebsitediman.com/';
This will result in the application redirecting all http requests to https.
When I enable https my bloxby instance breaks. I loose the site theme/format. Any ideas?
The issue was the call to style.css was set to http. I edited config.php changing the base url to https for resolution.