I have a requirement as follows...
We have a page called prodSpecification.aspx which accepts few parameters like id and category etc.
The user can do a search for a product which will display them the products. Clicking on a product will call the above page prodSpecification.aspx with the required parameters.
In order to make the URL SEO friendly, we want to change the above URL as follows.
www.xyz.com/prodSpecification.aspx?modelID=4004&cond=all
TO
www.xyz.com/{Manufacturer}/{ProductGroup}/{BaseModel}/
but behind the scenes, the user will be taken to www.xyz.com/prodSpecification.aspx?modelID=4004&cond=all. The URL change is only for the user and SEO.URL.
Is this possible. All examples and readings I see is the other way round...
Any help will be appreciated..
Anup