I Want to pass a parameter in the end of the url, that will not affect anything before it, no matter what's the query string include.
Example:
Consider i have the following url's:
1) domain.com?a=b
2) domain.com?a=b&c=d
3) domain.com/#header
I want to insert my parameter in the end of each url, and always in the same method, like this:
1) domain.com?a=b[MYPARAM=123]
2) domain.com?a=b&c=d[MYPARAM=123]
3) domain.com/#header[MYPARAM=123]
i want the browser to completely ignore the additional parameter, and only make some actions with it in the server side. (in example 3, the browser will think that i want to get to an element with id #header[MYPARAM=123] inside the page, so it's not good.)
is there some prefix that i can use to tell the browser to ignore it and only make actions to it in the server?
Thanks.