Should be "match" instead of "map"

This commit is contained in:
Vishnu Atrai
2011-07-15 23:56:58 +05:30
parent ff410c4ea9
commit b6d5612f55

View File

@@ -560,13 +560,13 @@ would match +zoo/woo/foo/bar/baz+ with +params[:a]+ equals +"zoo/woo"+, and +par
NOTE: Starting from Rails 3.1, wildcard routes will always match the optional format segment by default. For example if you have this route:
<ruby>
map '*pages' => 'pages#show'
match '*pages' => 'pages#show'
</ruby>
NOTE: By requesting +"/foo/bar.json"+, your +params[:pages]+ will be equals to +"foo/bar"+ with the request format of JSON. If you want the old 3.0.x behavior back, you could supply +:format => false+ like this:
<ruby>
map '*pages' => 'pages#show', :format => false
match '*pages' => 'pages#show', :format => false
</ruby>
h4. Redirection