Forum Moderators: mack
Theoretically, the server could just deliver the root document for an empty path. In reality, however, all server software existing today will return a redirect, which means that the client needs to issue a second request. That second request wastes time, and will make the response behaviour of your site feel a little less "snappy".
The webserver is typically configured to serve a default resource for this scenario. For instance, an HTTP request to www.webmasterworld.com will return the HTML for the home page WITHOUT a redirect.
Any other folder, however, will normally result in a redirect being sent to the browser. A request to "http://www.webmasterworld.com/forum48" for instance will result in a 301 redirect. While a request to "http://www.webmasterworld.com/forum48/" returns the HTML for the New To Web Development forum.