I have about 7 query-string parameters in my URL :
If I break it down following are the query string parameters :
productid
documentid
producttitle
categoryid
source
numberpage
pos
Out of these I need to only display productId and documentId to the search engine, what is the best approach to achieve this?
I could accommodate one more query string parameter named "extendedattributes" which would contain a comma seperated list of remaining parameters which I could separate back in the request and create a response accordingly, but is that a good way to achieve this ? Is there any other better way ?
Thanks