When creating a short URL service for URLs on the same domain, should we be using a 302 redirect?

Full URL structure: example.com/gig/{id}/gig-full-name-slug
Short URL structure: example.com/g/{base64id}

We're using asp.net mvc3, if there's any shortcuts.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 6 down vote accepted

Your best bet is to return a 301 so that search engines pick it up as a proper redirect and dont try to index your short urls. This is what the others do (ie. bit.ly)

link|improve this answer
feedback

As it's not a temporary redirect (as the content will never be back at that URL), a HTTP 303 See Other redirect would be more appropriate.

link|improve this answer
2  
I suspect that other short URL services are using HTTP 301 Moved Permanently. Probably because that response is cachable. – goalie7960 Jun 3 '11 at 0:11
@goalie looks like you're right. I'll probably roll with the 301. Cheers. – Ben Cull Jun 3 '11 at 1:35
@Ben Cull: Well, a 301 doesn't really fit, but I suppose that you have to adapt to how others (mis)use the codes rather than what the standards say... – Guffa Jun 3 '11 at 9:21
feedback

Your Answer

 
or
required, but never shown

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