Tagged Questions

2
votes
3answers
238 views

Anyone got SEO tips for Ruby on Rails

Can anyone recommend some RoR plugins and/or general sage that will help me with SEO?
1
vote
1answer
126 views

SEO for Rails site, now or later?

My freelance web developer is developing a site on Ruby on Rails. Currently the URL structure is http://abc.com/all?ID=category Example: http://abc.com/all?3=CatA I requested him to structure the ...
1
vote
2answers
392 views

How can I use friendly ID in Rails like mysite.com/[USERNAME]

How can I use friendly URLs on my Rails application ? All I need is to make available the following url format mysite.com/company1 mysite.com/user123 mysite.com/user1234 mysite.com/newton.garcia ...
1
vote
2answers
1k views

Rails Friendly URLs

I have a model called Project and I've defined the "to_param" method as this: def to_param permalink end I am using this permalink plugin github.com/febuiles/make_permalink so when I call ...