Is it safe to always skip the trailing slash when appending a query string?
That is, can I use
http://example.com?querystring
instead of:
http://example.com/?querystring
? All webhosts I've used support this but is it safe to assume that all server environments will support this method? Is it standard?