I want to copy the twitter profile page and have a url with a username \"http://www.my-app.com/username\" and while I can manually type this into the address bar and navigat
To create urls you need to define to_param method for your user model (read here).
to_param
class User < ActiveRecord::Base def to_param username end end