if we omit the / from the end of href address in <a> tag, then whats happening to the requests ?
Hello Masters. i n this tag : <a href="https://www.w3schools.com/html/">Visit our HTML tutorial</a> W3schools Says: Note: Without a forward slash at the end of subfolder addresses, you might generate two requests to the server. Many servers will automatically add a forward slash to the end of the address, and then create a new request. --------------------------------------------------------------------------------- so we send 2 requests to the server and why w3schools say: Many servers will automatically add a forward slash to the end of the address, and then create a new request!!! I'm confused that the Client get 2 requests or the server gets 2 requests? and the additional request originates from server to client ? or originate from client to the server? Thank You.