Add parameters to URL without changing path to file

1

So I have a url imagine ...

  

link

The idea is for me to add a parameter or a variable to a url:

  

link

This parameter is written by the user when defining the url. The idea is then to use the parameter to define what will appear on the page.

What I do not understand is: how come by putting this address ...

  

link

It will look like the content that is already in:

  

link

where url are different ...

I do not want to redirect to another page I just want to use that parameter in a script later.

    
asked by anonymous 19.05.2015 / 12:40

1 answer

1

QueryStrings does not change the content of the page unless the programmer has done something to make it happen, so:

www.yoursite.com

Will show the same content as

www.yourdomain.com

    
19.05.2015 / 17:27