It loads fine, with no issues at all, then when i click on a product or any other link on the site it just goes to
Make sure that the 'www' is in both of your configure.php files
Code:
define('HTTP_SERVER', 'http://www.mydomain.co.uk');
define('HTTPS_SERVER', 'https://www.mydomain.co.uk');
Then to globally force the www so that you get no duplicate content add to your .htaccess file
Code:
RewriteEngine on
RewriteCond %{HTTP_HOST} !^www.ymydomain.co.uk$
RewriteRule ^(.*)$ http://www.mydomain.co.uk/$1 [R=301]
Replacing "mydomain.co.uk" with your actual domain name