Is there anyway to remove the GET parameters from the request URL? Such that when the response arrives to the client, the window's location will be a URL clean from GET parameters. Is there anyway to do this without doing any redirects and that the parameters passed will be accessible on the server?
Thanks!
Purpose:
It is to shorten the URL. Currently in my site, links will have a handler that will convert GET parameters into hash parameters. After this, a location hash change listener will perform an AJAX request (with the location hash parameters) to reload certain parts of the document. When trying to open the links in new windows/tabs, I plan to "clean" the URL parameters and put it into the location hash, delimited by some string. If it is not possible to "clean" the URLs, it might become too long as there will be GET parameters and location hash parameters as well.