Hi David,
in my search results I get the following url
http://www.example.com/product/Product-Name.html
this link does show an error and google can not follow this link.
The working urls should be
http://www.example.com/products/Product-Name.html
Where does this come from and how can I change that. I have allready changed the .htaccess rewrite from product to products but nothing happened.
Regards
Roland
Hi Roland,
It's created where the product URLs are generated within the tapestry_productHREF() function in includes/tapestry.php. Look for the following code at line 53:
return $config_baseHREF."product/".urlencode(tapestry_hyphenate($product["normalised_name"])).".html";
...and REPLACE with:
return $config_baseHREF."products/".urlencode(tapestry_hyphenate($product["normalised_name"])).".html";
Cheers,
David.
--
PriceTapestry.com