https is breaking my website's design. Please have a look at www.pawpost.com.au/index.php
I am using opencart if that helps at all.
I have SSL 'on' in admin/system
Config file:
// HTTP
define('HTTP_SERVER', 'http://www.pawpost.com.au/');
define('HTTP_IMAGE', 'http://www.pawpost.com.au/image/');
define('HTTP_ADMIN', 'http://www.pawpost.com.au/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://www.pawpost.com.au/');
define('HTTPS_IMAGE', 'http://www.pawpost.com.au/image/');
define('HTTP_ADMIN', 'http://www.pawpost.com.au/admin/');
.htaccess:
RewriteBase /
RewriteRule ^sitemap.xml$ index.php?route=feed/google_sitemap [L]
RewriteRule ^googlebase.xml$ index.php?route=feed/google_base [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
RewriteCond %{HTTPS} off
RewriteRule (.*) https://www.pawpost.com.au/ [R]
Any ideas on this?? It's driving me crazy.
Have tried:
- Only with SSL 'on' in admin.
- SSL 'on' and the config file the way it is above.
- SSL 'on' and .htaccess the way it is above.
- With SSL 'on', .htaccess, and config file.