up vote 2 down vote favorite
share [g+] share [fb]

I'm working on a new project, using Apache's mod_rewrite and PHP to get pretty URLs.

Here's what my URLs look like:
http://example.tld/foo/bar/1/etc

Notice that there's no trailing slash (that's the way I write it in the href attributes of <a>s).

However, I'm also allowing http://example.tld/foo/bar/1/etc/ (trailing slash).

Is this bad practice? I'm wondering if it would be better to only allow one way or if I'd better use trailing slashes in all my links, by default.

Thanks.

link|improve this question

44% accept rate
feedback

3 Answers

up vote 1 down vote accepted

A trailing slash usually indicates a directory, without a trailing slash it indicates a file.

Allowing both with and without trailing slash will have a negative effect on your search engine ranking, because the same content is indexed twice. Stick to one, and do a 301 redirect if a user requests the other.

link|improve this answer
That's what I was afraid of. I just realized that Stack Overflow, for example, allows both trailing slashes and no trailing slashes. I think I'm going for no trailing slashes then. There are no browsers that try to force a trailing slash, right? – user367217 Jun 17 '10 at 10:10
feedback

Trailing slashes can be a problem when using relative links in the document, as the browser will then treat /etc as a directory.

I would define one way, and set up an external redirect for the other.

link|improve this answer
1  
Relative links in pretty urls? Now there is an invitation to a headache. – Kristoffer S Hansen Jun 17 '10 at 8:57
@Kristoffer true :) But I've seen it done... – Pekka Jun 17 '10 at 8:58
feedback

I'd say for consistency only allow what you use yourself, then have it redirect (301) the wrong (with trailing) to the right one (without trailing), this way you won't have duplicate content either.

Of course whats right and wrong is entirely up to you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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