Hi friends:
Recently I changed all my dynamic links to static. I made several changes for a specific link, but now I want google only indexed my last change:
###1: First i do changed dinamic to static:
RewriteCond %{HTTP_HOST} ^www.perubookstore.com$
RewriteRule ^detallelibro/([^/]+)$ /cgi-bin/perubookstore/store.cgi?action=link&sku=$1 [L]
###2: but then corrected "detallelibro" to "libro" and added new variable:
RewriteRule ^detallelibro/(.*)$ /libro/$1 [R=301,L]
RewriteRule ^libro/([^/]+)/?(.*)$ /cgi-bin/perubookstore/store.cgi?action=link&sku=$1&titulo=$2 [L]
Note: all these rules are now in my htaccess.
However, google only indexed:
www.domain.com/libro/idproduct (and sometimes domain.com/detallelibro/idproduct)
but no my last and correct link:
I have included my new sitemap in google but nothing.
How can I make google reindexed my last change only?.
What changes do in my htaccess?
thanks.
Recently I changed all my dynamic links to static. I made several changes for a specific link, but now I want google only indexed my last change:
###1: First i do changed dinamic to static:
RewriteCond %{HTTP_HOST} ^www.perubookstore.com$
RewriteRule ^detallelibro/([^/]+)$ /cgi-bin/perubookstore/store.cgi?action=link&sku=$1 [L]
###2: but then corrected "detallelibro" to "libro" and added new variable:
RewriteRule ^detallelibro/(.*)$ /libro/$1 [R=301,L]
RewriteRule ^libro/([^/]+)/?(.*)$ /cgi-bin/perubookstore/store.cgi?action=link&sku=$1&titulo=$2 [L]
Note: all these rules are now in my htaccess.
However, google only indexed:
www.domain.com/libro/idproduct (and sometimes domain.com/detallelibro/idproduct)
but no my last and correct link:
I have included my new sitemap in google but nothing.
How can I make google reindexed my last change only?.
What changes do in my htaccess?
thanks.
Comment