Website Link Query

You'll want to research rails routing. The default route is of the form

map.connect ':controller/:action/:id'

So right now the only way to display your pages based on the way you've setup your controller is

http://www.mysite.com/mycontroller/page/?page=aboutus # => goes to aboutus page

You may like to look at this article which describes how to set up routes for the ‘flat’ pages on your website, which sounds like what you want to do:

http://www.paulsturgess.co.uk/articles/show/27

Your URLs will look like:

http://www.mysite.com/aboutus

http://www.mysite.com/resources

I didn’t see the original post so apologies if this is not what you are after.

Regards,

Andy Stewart