Ajax requests URL with random number principle
for example:
$.ajax({
type: "GET",
url: "login.action?ran="+getRandomNum()
});
Url in is followed by a random number to deceive browsers or proxy servers.
my question is if the url you generate is
login.action?ran=39525
only login.action on the server side does not have this login.action?ran=39525
Why does the server use login.action as a reply and does not report an error?