The html_header.php of my site says this:
Which outputs this into the pages:PHP Code:<base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER . DIR_WS_HTTPS_CATALOG : HTTP_SERVER . DIR_WS_CATALOG ); ?>" />
<?php if (isset($canonicalLink) && $canonicalLink != '') { ?>
<link rel="canonical" href="<?php echo $canonicalLink; ?>" />
<?php } ?>
Those extra /opalessenceshop/ directories should not be there. the correct urls areCode:<base href="http://opalessenceshop.com/opalessenceshop/" /> <link rel="canonical" href="http://opalessenceshop.com/opalessenceshop/index.php?main_page=shopping_cart" />
I'm not sure exactly how to edit the html_header.php file to correct this... help?Code:<base href="http://opalessenceshop.com/" /> <link rel="canonical" href="http://opalessenceshop.com/index.php?main_page=shopping_cart" />


Reply With Quote
