[osCommerce] index.php fine but not on product_info.php

Custom URLs and redirections.
dlievre
Posts: 1
Joined: Fri Apr 16, 2010 7:34 am

[osCommerce] index.php fine but not on product_info.php

Postby dlievre » Fri Apr 16, 2010 7:49 am

Hi,

you can visit my website :
http://www.collegien-shop.com
as you can notice :
on index.php, all products have a rewritten url
but on the product page, links to other products are not rewritten,

should I add a rule to .htaccess ?

Thanks

inveo
Inveo Support
Posts: 1285
Joined: Sat Feb 02, 2008 12:07 pm
Contact:

Re: [osCommerce] index.php fine but not on product_info.php

Postby inveo » Sat Apr 17, 2010 5:55 am

That links are not transformed to SEO format, because are not correctly formatted. Please use double quotes instead of single quotes in href parameter:

For example change:

Code: Select all

href='http://www.collegien-shop.com/product_info.php?products_id=263'

to

Code: Select all

href="http://www.collegien-shop.com/product_info.php?products_id=263"