News:

You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification

Main Menu

Duplicate content. Two urls for same category.

Started by dracoteam, June 26, 2012, 13:32:31 PM

Previous topic - Next topic

dracoteam

Hi

I have this

www.mydomain.com/shop-name/

and this

www.mydomain.com/shop-name/0/

Both indexed by Google in the same page with same content ´cos they are the same page. This is not good for SEO

You can try too. Another example

www.mydomain.com/shop-name/(here the id of one category)/
www.mydomain.com/shop-name/(here the id of one category)/the_name_of_that_category

I think you should fix it
Thanks


DE

Hello!

For this problem i decided to use rewrite rules. Cause joomla and virtuemart routers are far from perfect at least now.

Example for nginx:
if ($uri ~ /0/)
{
rewrite ^(.+)/ $1 permanent;
}
Something like this.