Simon Willison’s Weblog

Subscribe

How do sites prevent vanity URLs from colliding with future features ?

13th October 2010

My answer to How do sites prevent vanity URLs from colliding with future features ? on Quora

For wildlifenearyou.com and djangopeople.net I used the same trick as described by others in this list—an enormous blacklist of everything I could possibly want to use for a future feature.

Lanyrd.com uses Twitter screen names for profile URLs, which means this trick doesn’t work—I don’t have any control over what Twitter allows people to register. As a result, our profile pages are http://lanyrd.com/people/simonw/—but we do redirect http://lanyrd.com/simonw as a shortcut, assuming it doesn’t collide with a URL already used by the site. We’re not really promoting that feature though as we don’t want people to link to it when we can’t guarantee that it will always work for their account (if you have a username that’s unlikely to clash with a site feature you should be fine though).

This is How do sites prevent vanity URLs from colliding with future features ? by Simon Willison, posted on 13th October 2010.

Next: What startups host 100% of their private code on GitHub?

Previous: How much does it cost to develop a website like Yelp or Groupon?