views:

33

answers:

1

HI,

I have a specific requirement, when a user searches in google.com which returns me a list of results and one of the results is my website but it is pointing to a different page.

I need help in 2 places,

  1. Client is planing to enhance my website so that what ever link of my website appears in google results should show as cars.com/search.jsp?search=audi. I will be having the logic in my search.jsp or search.php page which navigates the user to an appropriate page.

  2. Or will the use the http_referrer stuff in all the pages of my website to redirect to different pages helps me in this case ?

Is this possible to implement, please guide me regarding this.

Thanks Gopi

+1  A: 

every link of my website appears in google results should show as cars.com/search.jsp?search=audi. I will be having the logic in my search.jsp or search.php page which navigates the user to an appropriate page.

Hum? The only way to do this is to have Google index exactly one page – that is, cars.com/search.jsp?search=audi. You probably don't want that.

Or will the use the http_referrer stuff in all the pages of my website to redirect to different pages helps me in this case ?

This is a possibility, but beware that if show pages that are significantly different than what Google indexes, you'll be violating their terms and risk yourself to being removed from Google's index.

Artefacto