This post originated from an RSS feed registered with .NET Buzz
by Maruis Marais.
Original Post: Friendly url’s in my rails application within minutes
Feed Title: exceptionz
Feed URL: http://feeds.feedburner.com/Exceptionz
Feed Description: I am an XP, TDD, OO and .NET enthusiast. Things like Design Patterns makes my pulse race, I love learning exciting new things and to share my thoughts and techniques with the world. So join me and together we can explore the awesome world of software development
To get search engine friendly urls in my rails application, all I had to do is the following 5 steps:
Install the acts_as_urlnameable plugin using one of the following command:
script/plugin install http://code.helicoid.net/svn/rails/plugins/acts_as_urlnameable/
or if you’re using svn for your project, install with -x:
script/plugin install -x http://code.helicoid.net/svn/rails/plugins/acts_as_urlnameable/
or alternatively you could use piston.
Next you need to add the call [...]