Dealing with permalinks in Rails

When you want to improve your SEO karma, you have to play with your urls. You can use norman/friendly_id, but you can also do it yourself, it’s quite simple: just rewrite to_param method.
We can go further by creating a column for the permalink and using a hook to fill it:
On the controller side, it remains [...]