vote up 3 vote down star

I'm storing URLs in a database, and I want to be able to know if two URLs are identical. Generally, a trailing slash at the end doesn't change the response you'd get from a server. (ie. http://www.google.com/ is the same as http://www.google.com)

Can I always blindly remove the trailing slash from any URL, without looking at anything?
Is that safe?

What I mean by "without looking at anything" is that I'd remove the slash from:
http://www.google.com/q?xxx=something&yyy=something/

I know the web server could theoretically return completely different things if it wanted, and I know sometimes going to a URL without the slash will redirect to one with the slash. My only intention here is determining if both URLs are the same.

Is this method safe?

Thank you.

flag

69% accept rate

5 Answers

vote up 13 vote down check

No it is not always safe. A web server could interpret the path part of the URL anyway it likes. You cannot tell what it will do (resolve the URI) without using a GET or HEAD on the URL.

link|flag
Thank you. I've been looking through the DB, and fortunately, I confirmed that this is not a problem. All URLs submitted are grabbed by a bookmarklet code we have, and as I suspected, there is no possibility of 2 users having the same URL except for a trailing slash. Or at least, it hasn't happened yet :-). – Daniel Magliola Jun 3 at 4:12
And, IIRC, the URL specification specifically states that a URL ending with a slash denotes a directory, and without denotes a document. Many web servers will redirect to or return a default document for the former, and return 401 for the latter (I know mine does). – Software Monkey Jun 3 at 5:25
The URL spec talks about hierarchical URL schemes - the ones like FOO:// rather than the ones like BAR:blah. Some hierarchical ones are well known like http, ftp but still you can't tell whether / at the end is meaningful, it's for the server to interpret and that may depend on the OS, server software implementation and other things. – dajobe Jun 3 at 6:41
vote up 4 vote down

No. I've encountered situations where, depending on the settings in a .htaccess file, some directories or "clean URLs" (such as those generated by a CMS) could not be accessed without a trailing slash. It's rare and it might be a mistake on the part of the webmaster, but it can happen.

link|flag
vote up 4 vote down

It may be safe in the sense that you'll get the same response with or without a trailing slash (and I can't guarantee that's true), but they can definitely mean different things. Consider a URL that references a directory, or something presented by the site as a directory. Using the URL

http://www.somesite.com/directory/

...makes it clear you're asking for a directory. If you hack off the trailing slash:

http://www.somesite.com/directory

...the site's going to take this as a request for a file called "directory", and get all confused for a moment. It'll likely interpret this as a request for a directory, but the meanings are not the same, and you might not get what you expect.

See this article for more detail.

link|flag
vote up 0 vote down

As others have noted, it's not always safe. If it will work for you, my recommendation is to store the URL's with the slashes, and strip them off when you do your comparison. You'll take a performance hit, but I'd think that's better than sending someone to the wrong web page.

link|flag
Or store both the actual URL and the URL in canonical form if you don't want to do the processing when you compare. Time-space tradeoff. – Chuck Jun 3 at 2:38
vote up -1 vote down

I am desperate to know why Google webmaster tools AND analytics are registering my home page as a trailing slash?!

There are no crawl errors, 401s, search issues, nothing wrong otherwise.

My home page is written with a trailing slash and if a visitor does not include the slash, my site will automatically fetch the / and send them to http://about/

I think maybe this is why Google now thinks that / is my home page.

I have a wordpress blog that someone installed but it's my own domain. Has this ever happened to ANYONE in the history of the internet before???

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.