this is my SSL url
https://mydomain.myhost.com/
now this is my configuration file
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://mydomain/');
define('HTTP_IMAGE', 'http://mydomain/image/');
define('HTTP_ADMIN', 'http://mydomain/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://mydomain/');
define('HTTPS_IMAGE', 'http://mydomain/image/');
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://mydomain/https://mydomain.myhost.com/');
define('HTTP_IMAGE', 'http://mydomain/image/https://mydomain.myhost.com/');
define('HTTP_ADMIN', 'http://mydomain/admin/https://mydomain.myhost.com/');
// HTTPS
define('HTTPS_SERVER', 'http://mydomain/https://mydomain.myhost.com/');
define('HTTPS_IMAGE', 'http://mydomain/image/https://mydomain.myhost.com/');