I'm designing a hosted software-as-a-service application that's like a highly specialized version of 37Signal's Highrise product. In that context, where SEO is a non-issue, is it worth implementing "pretty URLs" instead of going with numeric IDs (e.g. customers/john-smith instead of customers/1234)? I notice that a lot of web applications don't bother with them unless they provide a real value (e.g. e-commerce apps, blogs - things that need SEO to be found via search engines)
|
|
|
|||
|
|
|
|
If your application is restful, the URLs that rails gives you are SEO-friendly by default. In your example,
Any current SEO spider will be smart enough to parse the destination page and extract that "John Smith" from there anyway. So, in that sense, Now, if you want your users to be regularly using urls (like in delicious, etc) you might want to start using logins and readable fields instead of ids. But for SEO, ids are just fine. |
||
|
|
|
|
I typically go with a combination -- keeping the ease of using Rails RESTful routing while still providing some extended information in URLs. My app URLs look something like this: http://example.com/discussions/123-is-it-worth-using-pretty-urls/ http://example.com/discussions/123-is-it-worth-using-pretty-urls/comments http://example.com/discussions/123-is-it-worth-using-pretty-urls/comments/34567 You don't have to add ANY custom routes to pull this off, you just need to add the following method to your model:
And ensure any find calling params[:id] in your controller is converted to an integer by setting params[:id].to_i. Just a note, you'll need to set a permalink attribute when your record is saved... |
||
|
|
|
|
I sure am a lot more likely to click on a link when I mouseover it and it has http://www.blah.com/something-i-am-interested-in.html rather than seeing http://www.blah.com/23847ozjo8uflidsa.asp Its quite annoying clicking links on msdn because I never know what to expect I will get if I click on a link. |
||
|
|
|
|
It's always worth it if you just have the time to do it right.
|
||||
|
|
|
When I create applications I try my best to hide its structure from prying eyes - while it's subjective on how much "SEO" you get out of it - Pretty URLs tend to help people navigate and understand where they are while protecting your code from possible injections. I notice you're using Rails app - so you probably wouldn't have a huge query string like in ASP, PHP, or those other languages - but in my opinion the added cleanliness and overall appearance is a plus for customer interaction. When sharing links it's nicer for customers to be able to copy the url: customer/john_doe than have to hunt for a "link me" or a random /customer/ Marco |
|||
|
|
|
|
In addition to readability, another thing to keep in mind is that by exposing an auto-incrementing numeric key you also allow someone to guess the URLs for other resources and could give away certain details about your data. For instance, if someone signs up for your app and sees that their account is at |
||||
|
|
|
It's probably not worth it even if you do care about SEO. |
||||
|
|
|
Depends on how often URLs are transmitted verbally by its users. People tend to find it relatively difficult to pronounce something like
and like
much better ;) |
|||
|
|
