This below is my way:
+ Open app/design/frontend/default/jm_purity/template/page/includes/templatetools.php, at about line 277, find following code:
PHP Code:
return $_baseURL;
and change to:
PHP Code:
if (strpos($_baseURL, 'index.php') > 0) {
$strpos = strpos($_baseURL, 'index.php');
$_baseURL = substr($_baseURL, 0 , $strpos - 1);
}
return $_baseURL;
This question is now closed