
Originally Posted by
Man from Mars
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');
Can anyone advise me where I'm going wrong?
Thanks
your hosting company is correct. your SSL seems to be working fine.
to change your home from this:
https://www.anglingcentrewestbay.co.uk/catalog/
to:
https://www.anglingcentrewestbay.co.uk
you need to change your configure.php file. change these lines:
Code:
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');
to:
Code:
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
good luck!