On Thu, Nov 22, 2012 at 6:58 AM, Dan Brooking <[email protected]> wrote: __SNIP__
> The problem I face is it works for part of the URL. So if I do: > http://localhost:3000/pages/http%3A%2F%2F or > http://localhost:3000/pages/http%3A%2F%2Fguides or > http://localhost:3000/pages/http%3A%2F%2Fguides.rubyonrails > it works. But as soon as I add in the second '.', I start getting errors. > http://localhost:3000/pages/http%3A%2F%2Fguides.rubyonrails.org > gives me: > Routing Error > No route matches [GET] "/pages/http%3A%2F%2Fguides.rubyonrails.org" > Any ideas? get "/pages/:page" => "controller#page", value: /.*/ Notice the "value: /.*/". -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

