In my application, I redirect an HTTP request and also pass a parameter. Example:
http://localhost:9000/home;signup=error
Is it better to use a ;
or shall I use a ?
i.e. shall I do http://localhost:9000/home;signup=error
or http://localhost:9000/home?signup=error
?
Are the above two different from each other semantically?