How can I create a Rails 3 route that will match all requests and direct to one resource / page?

12,781

Solution 1

Rails needs to bind the url parameters to a variable, try this:

match '*foo' => 'content#holding'

If you also want to match /, use parenthesis to specify that foo is optional:

match '(*foo)' => 'content#holding'

Solution 2

I did this just yesterday and first came up with the solution that klochner shows. What I didn't like about this is the fact that whatever you enter in the URL, stays there after the page loads, and since I wanted a catch all route that redirects to my root_url, that wasn't very appealing.

What I came up with looks like this:

# in routes.rb
get '*ignore_me' => 'site#unknown_url'

# in SiteController
def unknown_url
  redirect_to root_url
end

Remember to stick the routes entry at the very bottom of the file!

EDIT: As Nick pointed out, you can also do the redirect directly in the routes file.

Solution 3

I ran into something like this where I had domain names as a parameter in my route:

match '/:domain_name/', :to => 'sitedetails#index', :domain_name => /.*/, :as =>'sitedetails'

The key piece to this was the /.*/ which was a wildcard for pretty much anything. So maybe you could do something like:

match '/:path/', :to => 'content#holding', :path=> /.*/, :as =>'whatever_you_want'
Share:
12,781
Nick
Author by

Nick

Updated on June 15, 2022

Comments

  • Nick
    Nick about 2 years

    I have a rails app (Rails 3.0) that I need to temporarily take out of service. While this is in effect, I want to create a new route that will direct all requests to a single piece of static content. I have a controller set up to serve my static pages.

    I tried something like this:

    match '*' => 'content#holding'
    

    and

    match '*/*' => 'content#holding'
    

    to match a wildcard route as described here:Rails 3 route globbing without success.

    This is probably a really simple answer, but I couldn't figure it out.

    /EDIT/ Forgot to mention that I did have this rule at the very top of my routes.rb file.

  • Nick
    Nick over 12 years
    Oops - forgot to mention that yes, it was on the top of the file.
  • Sergio Tulentsev
    Sergio Tulentsev over 12 years
    Did you restart the server? :-)
  • Nick
    Nick over 12 years
    This seems to work for all paths, but not for the root itself. I added an additional temporary root route to the top of routes.rb as well, so now it is working how I want - thanks!
  • Nick
    Nick over 12 years
    My end result looks like this: "match '*foo' => redirect('/') #NEWLINE root :to => 'content#holding'" Basically I took your idea, added the redirect, then routed root temporarily to my holding page.
  • Nick
    Nick over 12 years
    Yes - I noticed that too. You can also do redirects right in the routes.rb - see my comment above on klochner's answer
  • cvshepherd
    cvshepherd over 12 years
    @Nick Ah, now that's nifty. Will switch to that solution.
  • klochner
    klochner over 12 years
    if you're redirecting, make sure it's a 302 (moved temporarily) rather than a 301 (moved permanently)
  • hiveer
    hiveer over 5 years
    It's working like a charm. But can you share in which place the official document show these information?
  • Lerk
    Lerk over 3 years
    I'd suggest using all as a more descriptive variable name.