aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/routing.textile
blob: 662541268431293ae08210326a3dbba0180c052d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
h2. Rails Routing from the Outside In

This guide covers the user-facing features of Rails routing. By referring to this guide, you will be able to:

* Understand the purpose of routing
* Decipher the code in +routes.rb+
* Construct your own routes, using either the @match@ method or the preferred RESTful style
* Identify how a route will map to a controller and action

endprologue.

h3. The Dual Purpose of Routing

Rails routing is a two-way piece of machinery - rather as if you could turn trees into paper, and then turn paper back into trees. Specifically, it both connects incoming HTTP requests to the code in your application's controllers, and helps you generate URLs without having to hard-code them as strings.

h4. Connecting URLs to Code

When your Rails application receives an incoming HTTP request, say

<pre>
GET /patients/17
</pre>

the routing engine within Rails is the piece of code that dispatches the request to the appropriate spot in your application. In this case, the application would most likely end up running the +show+ action within the +patients+ controller, displaying the details of the patient whose ID is 17.

h4. Generating URLs from Code

Routing also works in reverse. If your application contains this code:

<ruby>
@patient = Patient.find(17)
</ruby>

<erb>
<%= link_to "Patient Record", patient_path(@patient) %>
</erb>

Then the routing engine is the piece that translates that to a link to a URL such as +http://example.com/patients/17+. By using routing in this way, you can reduce the brittleness of your application as compared to one with hard-coded URLs, and make your code easier to read and understand.

NOTE: Patient needs to be declared as a Restful resource for this style of translation to be available.

h3. Quick Tour of +routes.rb+

There are two components to routing in Rails: the routing engine itself, which is supplied as part of Rails, and the file +config/routes.rb+, which contains the actual routes that will be used by your application. Learning exactly what you can put in +routes.rb+ is the main topic of this guide, but before we dig in let's get a quick overview.

h4. Processing the File

In format, +routes.rb+ is nothing more than one big block sent to +ApplicationName::Application.routes.draw+. Within this block, you can have comments, but it's likely that most of your content will be individual lines of code - each line being a route in your application. You'll find five main types of content in this file:

* RESTful Routes
* Named Routes
* Nested Routes
* Regular Routes
* Default Routes

Each of these types of route is covered in more detail later in this guide.

The +routes.rb+ file is processed from top to bottom when a request comes in. The request will be dispatched to the first matching route, and then proceeds to the next. If there is no matching route, then Rails returns HTTP status 404 to the caller.

h4. RESTful Routes

RESTful routes take advantage of the built-in REST orientation of Rails to wrap up a lot of routing information with a single declaration. A RESTful route looks like this:

<ruby>
resources :books
</ruby>

h4. Named Routes

Named routes give you very readable links in your code, as well as handling incoming requests. Here's a typical named route:

<ruby>
match 'login' => 'sessions#new', :as => 'login'
</ruby>

If you're coming from Rails 2, this route will be equivalent to:

<ruby>
map.login '/login', :controller => 'sessions', :action => 'new'
</ruby>

You will also notice that +sessions#new+ is a shorthand for +:controller => 'sessions', :action => 'new'+. By declaring a named route such as this, you can use +login_path+ or +login_url+ in your controllers and views to generate the URLs for this route. A RESTful generates named routes without the need to explicitly generate a named route via +as+ key.

h4. Nested Routes

Nested routes let you declare that one resource is contained within another resource. You'll see later on how this translates to URLs and paths in your code. For example, if your application includes parts, each of which belongs to an assembly, you might have this nested route declaration:

<ruby>
resources :assemblies do
  resources :parts
end
</ruby>

h4. Regular Routes

In many applications, you'll also see non-RESTful routing, which explicitly connects the parts of a URL to a particular action. For example,

<ruby>
match 'parts/:number' => 'inventory#show'
</ruby>

h4. Default Routes

The default route is a safety net that catches otherwise-unrouted requests. Many Rails applications will contain this default route:

<ruby>
match ':controller(/:action(/:id(.:format)))'
</ruby>

In Rails 3, this route is commented out advising to use RESTful routes as much as possible. So if you're using RESTful routing for everything in your application, you will probably want to leave it like that.

h3. RESTful Routing: the Rails Default

RESTful routing is the current standard for routing in Rails, and it's the one that you should prefer for new applications. It can take a little while to understand how RESTful routing works, but it's worth the effort; your code will be easier to read and you'll be working with Rails, rather than fighting against it, when you use this style of routing.

h4. What is REST?

The foundation of RESTful routing is generally considered to be Roy Fielding's doctoral thesis, "Architectural Styles and the Design of Network-based Software Architectures":http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm. Fortunately, you need not read this entire document to understand how REST works in Rails. REST, an acronym for Representational State Transfer, boils down to two main principles for our purposes:

* Using resource identifiers (which, for the purposes of discussion, you can think of as URLs) to represent resources
* Transferring representations of the state of that resource between system components.

For example, to a Rails application a request such as this:

<pre>
DELETE /photos/17
</pre>

would be understood to refer to a photo resource with the ID of 17, and to indicate a desired action - deleting that resource. REST is a natural style for the architecture of web applications, and Rails makes it even more natural by using conventions to shield you from some of the RESTful complexities.

h4. CRUD, Verbs, and Actions

In Rails, a RESTful route provides a mapping between HTTP verbs, controller actions, and (implicitly) CRUD operations in a database. A single entry in the routing file, such as

<ruby>
resources :photos
</ruby>

creates seven different routes in your application:

|_.HTTP verb|_.URL           |_.controller|_.action |_.used for|
|GET        |/photos         |Photos      |index    |display a list of all photos|
|GET        |/photos/new     |Photos      |new      |return an HTML form for creating a new photo|
|POST       |/photos         |Photos      |create   |create a new photo|
|GET        |/photos/1       |Photos      |show     |display a specific photo|
|GET        |/photos/1/edit  |Photos      |edit     |return an HTML form for editing a photo|
|PUT        |/photos/1       |Photos      |update   |update a specific photo|
|DELETE     |/photos/1       |Photos      |destroy  |delete a specific photo|

For the specific routes (those that reference just a single resource), the identifier for the resource will be available within the corresponding controller action as +params[:id]+.

h4. URLs and Paths

Creating a RESTful route will also make available a pile of helpers within your application, something that requires explicit mention otherwise:

* +photos_url+ and +photos_path+ map to the path for the index and create actions
* +new_photo_url+ and +new_photo_path+ map to the path for the new action
* +edit_photo_url+ and +edit_photo_path+ map to the path for the edit action
* +photo_url+ and +photo_path+ map to the path for the show, update, and destroy actions

NOTE: Because routing makes use of the HTTP verb as well as the path in the request to dispatch requests, the seven routes generated by a RESTful routing entry only give rise to four pairs of helpers.

In each case, the +_url+ helper generates a string containing the entire URL that the application will understand, while the +_path+ helper generates a string containing the relative path from the root of the application. For example:

<ruby>
photos_url  # => "http://www.example.com/photos"
photos_path # => "/photos"
</ruby>

h4. Defining Multiple Resources at the Same Time

If you need to create routes for more than one RESTful resource, you can save a bit of typing by defining them all with a single call to +resources+:

<ruby>
resources :photos, :books, :videos
</ruby>

This has exactly the same effect as

<ruby>
resources :photos
resources :books
resources :videos
</ruby>

h4. Singular Resources

You can also apply RESTful routing to singleton resources within your application. In this case, you use +resource+ instead of +resources+ and the route generation is slightly different. For example, a routing entry of

<ruby>
resource :geocoder
</ruby>

creates six different routes in your application:

|_.HTTP verb|_.URL           |_.controller|_.action |_.used for|
|GET        |/geocoder/new   |Geocoders   |new      |return an HTML form for creating the new geocoder|
|POST       |/geocoder       |Geocoders   |create   |create the new geocoder|
|GET        |/geocoder       |Geocoders   |show     |display the one and only geocoder resource|
|GET        |/geocoder/edit  |Geocoders   |edit     |return an HTML form for editing the geocoder|
|PUT        |/geocoder       |Geocoders   |update   |update the one and only geocoder resource|
|DELETE     |/geocoder       |Geocoders   |destroy  |delete the geocoder resource|

NOTE: Even though the name of the resource is singular in +routes.rb+, the matching controller is still plural.

A singular RESTful route generates an abbreviated set of helpers:

* +new_geocoder_url+ and +new_geocoder_path+ map to the path for the new action
* +edit_geocoder_url+ and +edit_geocoder_path+ map to the path for the edit action
* +geocoder_url+ and +geocoder_path+ map to the path for the create, show, update, and destroy actions

h4. Customizing Resources

Although the conventions of RESTful routing are likely to be sufficient for many applications, there are a number of ways to customize the way that RESTful routes work. These options include:

* +:controller+
* +:singular+
* +:constraints+
* +:as+
* +:path_names+
* +:only+
* +:except+

You can also add additional routes via the +member+ and +collection+ blocks, which are discussed later in this guide.

h5. Using +:controller+

The +:controller+ option lets you use a controller name that is different from the public-facing resource name. For example, this routing entry:

<ruby>
resources :photos, :controller => "images"
</ruby>

will recognize incoming URLs containing +photo+ but route the requests to the Images controller:

|_.HTTP verb|_.URL           |_.controller|_.action |_.used for|
|GET        |/photos         |Images      |index    |display a list of all images|
|GET        |/photos/new     |Images      |new      |return an HTML form for creating a new image|
|POST       |/photos         |Images      |create   |create a new image|
|GET        |/photos/1       |Images      |show     |display a specific image|
|GET        |/photos/1/edit  |Images      |edit     |return an HTML form for editing an image|
|PUT        |/photos/1       |Images      |update   |update a specific image|
|DELETE     |/photos/1       |Images      |destroy  |delete a specific image|

NOTE: The helpers will be generated with the name of the resource, not the name of the controller. So in this case, you'd still get +photos_path+, +new_photo_path+, and so on.

h4. Controller Namespaces and Routing

Rails allows you to group your controllers into namespaces by saving them in folders underneath +app/controllers+. The +:controller+ option provides a convenient way to use these routes. For example, you might have a resource whose controller is purely for admin users in the +admin+ folder:

<ruby>
resources :photos, :controller => "admin/photos"
</ruby>

If you use controller namespaces, you need to be aware of a subtlety in the Rails routing code: it always tries to preserve as much of the namespace from the previous request as possible. For example, if you are on a view generated from the +photo_path+ helper, and you follow a link generated with +&lt;%= link_to "show", photo_path(1) %&gt;+ you will end up on the view generated by +admin/photos/show+, but you will also end up in the same place if you have +&lt;%= link_to "show", {:controller => "photos", :action => "show"} %&gt;+ because Rails will generate the show URL relative to the current URL.

TIP: If you want to guarantee that a link goes to a top-level controller, use a preceding slash to anchor the controller name: +&lt;%= link_to "show", {:controller => "/photos", :action => "show"} %&gt;+

You can also specify a controller namespace with the +namespace+ method instead of a path. This can be especially useful when mapping multiple namespaced routes together:

<ruby>
namespace :admin do
  resources :photos, :videos
end
</ruby>

That would give you routing for +admin/photos+ and +admin/videos+ controllers. 

The difference between generating routes through +namespace+ and the +:controller+ key is that the +namespace+ will add +admin+ to the generated helpers as well, so the above route generates +admin_photos_path+.

h5. Using +:singular+

If for some reason Rails isn't doing what you want in converting the plural resource name to a singular name in member routes, you can override its judgment with the +:singular+ option:

<ruby>
resources :teeth, :singular => "tooth"
</ruby>

TIP: Depending on the other code in your application, you may prefer to add additional rules to the +Inflector+ class instead.

h5. Using +:constraints+

You can use the +:constraints+ option in a RESTful route to impose a format on the implied parameter in routes. For example:

<ruby>
resources :photos, :constraints => {:id => /[A-Z][A-Z][0-9]+/}
</ruby>

This declaration constrains the +:id+ parameter to match the supplied regular expression. So, in this case, +/photos/1+ would no longer be recognized by this route, but +/photos/RR27+ would.

h5. Using +:as+

The +:as+ option lets you override the normal naming for the actual generated paths. For example:

<ruby>
resources :photos, :as => "images"
</ruby>

will recognize incoming URLs containing +image+ but route the requests to the Photos controller:

|_.HTTP verb|_.URL           |_.controller|_.action |_:used for|
|GET        |/images         |Photos      |index    |display a list of all photos|
|GET        |/images/new     |Photos      |new      |return an HTML form for creating a new photo|
|POST       |/images         |Photos      |create   |create a new photo|
|GET        |/images/1       |Photos      |show     |display a specific photo|
|GET        |/images/1/edit  |Photos      |edit     |return an HTML form for editing a photo|
|PUT        |/images/1       |Photos      |update   |update a specific photo|
|DELETE     |/images/1       |Photos      |destroy  |delete a specific photo|

NOTE: The helpers will be generated with the name of the resource, not the path name. So in this case, you'd still get +photos_path+, +new_photo_path+, and so on.

h5. Using +:path_names+

The +:path_names+ option lets you override the automatically-generated "new" and "edit" segments in URLs:

<ruby>
resources :photos, :path_names => { :new => 'make', :edit => 'change' }
</ruby>

This would cause the routing to recognize URLs such as

<pre>
/photos/make
/photos/1/change
</pre>

NOTE: The actual action names aren't changed by this option; the two URLs shown would still route to the new and edit actions.

TIP: If you find yourself wanting to change this option uniformly for all of your routes, you can set a default in your environment:

<ruby>
config.action_controller.resources_path_names = { :new => 'make', :edit => 'change' }
</ruby>

h5. Using +:name_prefix+

You can use the :name_prefix option to avoid collisions between routes. This is most useful when you have two resources with the same name that use +:path_prefix+ to map differently. For example:

<ruby>
resources :photos :name_prefix => 'photographer'
</ruby>

This combination will give you route helpers such as +photographer_photos_path+ to use in your code.

NOTE: You can also use +:name_prefix+ with non-RESTful routes.

h5. Using +:only+ and +:except+

By default, Rails creates routes for all seven of the default actions (index, show, new, create, edit, update, and destroy) for every RESTful route in your application. You can use the +:only+ and +:except+ options to fine-tune this behavior. The +:only+ option specifies that only certain routes should be generated:

<ruby>
resources :photos, :only => [:index, :show]
</ruby>

With this declaration, a +GET+ request to +/photos+ would succeed, but a +POST+ request to +/photos+ (which would ordinarily be routed to the create action) will fail.

The +:except+ option specifies a route or list of routes that should _not_ be generated:

<ruby>
resources :photos, :except => :destroy
</ruby>

In this case, all of the normal routes except the route for +destroy+ (a +DELETE+ request to +/photos/<em>id</em>+) will be generated.

TIP: If your application has many RESTful routes, using +:only+ and +:except+ to generate only the routes that you actually need can cut down on memory use and speed up the routing process.

h4. Nested Resources

It's common to have resources that are logically children of other resources. For example, suppose your application includes these models:

<ruby>
class Magazine < ActiveRecord::Base
  has_many :ads
end

class Ad < ActiveRecord::Base
  belongs_to :magazine
end
</ruby>

Each ad is logically subservient to one magazine. Nested routes allow you to capture this relationship in your routing. In this case, you might include this route declaration:

<ruby>
resources :magazines do
  resources :ads
end
</ruby>

In addition to the routes for magazines, this declaration will also create routes for ads, each of which requires the specification of a magazine in the URL:

|_.HTTP verb|_.URL                    |_.controller|_.action |_.used for|
|GET        |/magazines/1/ads         |Ads         |index    |display a list of all ads for a specific magazine|
|GET        |/magazines/1/ads/new     |Ads         |new      |return an HTML form for creating a new ad belonging to a specific magazine|
|POST       |/magazines/1/ads         |Ads         |create   |create a new ad belonging to a specific magazine|
|GET        |/magazines/1/ads/1       |Ads         |show     |display a specific ad belonging to a specific magazine|
|GET        |/magazines/1/ads/1/edit  |Ads         |edit     |return an HTML form for editing an ad belonging to a specific magazine|
|PUT        |/magazines/1/ads/1       |Ads         |update   |update a specific ad belonging to a specific magazine|
|DELETE     |/magazines/1/ads/1       |Ads         |destroy  |delete a specific ad belonging to a specific magazine|


This will also create routing helpers such as +magazine_ads_url+ and +edit_magazine_ad_path+.

h5. Using +:name_prefix+

The +:name_prefix+ option overrides the automatically-generated prefix in nested route helpers. For example,

<ruby>
resources :magazines do
  resources :ads, :name_prefix => 'periodical'
end
</ruby>

This will create routing helpers such as +periodical_ads_url+ and +periodical_edit_ad_path+. 

h5. Limits to Nesting

You can nest resources within other nested resources if you like. For example:

<ruby>
resources :publishers do
  resources :magazines do
    resources :photos
  end
end
</ruby>

Deeply-nested resources quickly become cumbersome. In this case, for example, the application would recognize URLs such as

<pre>
/publishers/1/magazines/2/photos/3
</pre>

The corresponding route helper would be +publisher_magazine_photo_url+, requiring you to specify objects at all three levels. Indeed, this situation is confusing enough that a popular "article":http://weblog.jamisbuck.org/2007/2/5/nesting-resources by Jamis Buck proposes a rule of thumb for good Rails design:

TIP: _Resources should never be nested more than 1 level deep._

h5. Shallow Nesting

The +:shallow+ option provides an elegant solution to the difficulties of deeply-nested routes. If you specify this option at any level of routing, then paths for nested resources which reference a specific member (that is, those with an +:id+ parameter) will not use the parent path prefix or name prefix. To see what this means, consider this set of routes:

<ruby>
resources :publishers, :shallow => true do
  resources :magazines do
    resources :photos
  end
end
</ruby>

This will enable recognition of (among others) these routes:

<pre>
/publishers/1           ==> publisher_path(1)
/publishers/1/magazines ==> publisher_magazines_path(1)
/magazines/2            ==> magazine_path(2)
/magazines/2/photos     ==> magazines_photos_path(2)
/photos/3               ==> photo_path(3)
</pre>

With shallow nesting, you need only supply enough information to uniquely identify the resource that you want to work with. 

h4. Route Generation from Arrays

In addition to using the generated routing helpers, Rails can also generate RESTful routes from an array of parameters. For example, suppose you have a set of routes generated with these entries in routes.rb:

<ruby>
resources :magazines do
  resources :ads
end
</ruby>

Rails will generate helpers such as magazine_ad_path that you can use in building links:

<ruby>
<%= link_to "Ad details", magazine_ad_path(@magazine, @ad) %>
</ruby>

Another way to refer to the same route is with an array of objects:

<ruby>
<%= link_to "Ad details", [@magazine, @ad] %>
</ruby>

This format is especially useful when you might not know until runtime which of several types of object will be used in a particular link.

h4. Namespaced Resources

It's possible to do some quite complex things by combining +scope+ and +:name_prefix+. For example, you can use the combination of these two options to move administrative resources to their own folder in your application:

<ruby>
scope 'admin' do
  resources :photos, :name_prefix => "admin", :controller => 'admin/photos'
  scope 'photos' do
    resources :tags, :name_prefix => 'admin_photo', :controller => 'admin/photo_tags'
    resources :ratings, :name_prefix => 'admin_photo', :controller => 'admin/photo_ratings'
  end
end
</ruby>

The good news is that if you find yourself using this level of complexity, you can stop. Rails supports _namespaced resources_ to make placing resources in their own folder a snap. Here's the namespaced version of those same three routes:

<ruby>
namespace :admin do
  resources :photos do
    resources :tags, :ratings
  end
end
</ruby>

As you can see, the namespaced version is much more succinct than the one that spells everything out - but it still creates the same routes. For example, you'll get +admin_photos_url+ that expects to find an +Admin::PhotosController+ and that matches +admin/photos+, and +admin_photos_ratings_path+ that matches +/admin/photos/_photo_id_/ratings+, expecting to use +Admin::RatingsController+. Even though you're not specifying +path_prefix+ explicitly, the routing code will calculate the appropriate +path_prefix+ from the route nesting.

h4. Adding More RESTful Actions

You are not limited to the seven routes that RESTful routing creates by default. If you like, you may add additional member routes (those which apply to a single instance of the resource), additional new routes (those that apply to creating a new resource), or additional collection routes (those which apply to the collection of resources as a whole).

h5. Adding Member Routes

To add a member route, just add +member+ block into resource block:

<ruby>
resources :photos do
  member do
    get :preview
  end
end
</ruby>

This will enable Rails to recognize URLs such as +/photos/1/preview+ using the GET HTTP verb, and route them to the preview action of the Photos controller. It will also create the +preview_photo_url+ and +preview_photo_path+ route helpers.

Within the block of member routes, each route name specifies the HTTP verb that it will recognize. You can use +get+, +put+, +post+, or +delete+ here. If you don't have multiple +member+ route, you can also passing +:on+ to the routing.

<ruby>
resources :photos do
  get :preview, :on => :member
end
</ruby>

h5. Adding Collection Routes

To add a collection route, use the +:collection+ option:

<ruby>
resources :photos do
  collection do
    get :search
  end
end
</ruby>

This will enable Rails to recognize URLs such as +/photos/search+ using the GET HTTP verb, and route them to the search action of the Photos controller. It will also create the +search_photos_url+ and +search_photos_path+ route helpers.

Just as with member routes, you can passing +:on+ to the routing.

<ruby>
resources :photos do
  get :search, :on => :collection
end
</ruby>

h5. Adding New Routes

As of writing, Rails 3 has deprecated +:new+ option from routing. You will need to explicit define the route using +match+ method

<ruby>
resources :photos
match 'photos/new/upload' => 'photos#upload', :as => 'upload_new_photos'
</ruby>

h5. A Note of Caution

If you find yourself adding many extra actions to a RESTful route, it's time to stop and ask yourself whether you're disguising the presence of another resource that would be better split off on its own. When the +member+ and +collection+ hashes become a dumping-ground, RESTful routes lose the advantage of easy readability that is one of their strongest points.

h3. Regular Routes

In addition to RESTful routing, Rails supports regular routing - a way to map URLs to controllers and actions. With regular routing, you don't get the masses of routes automatically generated by RESTful routing. Instead, you must set up each route within your application separately.

While RESTful routing has become the Rails standard, there are still plenty of places where the simpler regular routing works fine. You can even mix the two styles within a single application. In general, you should prefer RESTful routing _when possible_, because it will make parts of your application easier to write. But there's no need to try to shoehorn every last piece of your application into a RESTful framework if that's not a good fit.

h4. Bound Parameters

When you set up a regular route, you supply a series of symbols that Rails maps to parts of an incoming HTTP request. Two of these symbols are special: +:controller+ maps to the name of a controller in your application, and +:action+ maps to the name of an action within that controller. For example, consider one of the default Rails routes:

<ruby>
match ':controller(/:action(/:id))'
</ruby>

If an incoming request of +/photos/show/1+ is processed by this route (because it hasn't matched any previous route in the file), then the result will be to invoke the +show+ action of the +Photos+ controller, and to make the final parameter (1) available as +params[:id]+. This route will also route the incoming request of +/photos+ to PhotosController, since +:action+ and +:id+ are optional parameters, denoted by parenthesis.

h4. Wildcard Components

You can set up as many wildcard symbols within a regular route as you like. Anything other than +:controller+ or +:action+ will be available to the matching action as part of the params hash. So, if you set up this route:

<ruby>
match ':controller/:action/:id/:user_id'
</ruby>

An incoming URL of +/photos/show/1/2+ will be dispatched to the +show+ action of the +Photos+ controller. +params[:id]+ will be set to 1, and +params[:user_id]+ will be set to 2.

h4. Static Text

You can specify static text when creating a route. In this case, the static text is used only for matching the incoming requests:

<ruby>
match ':controller/:action/:id/with_user/:user_id'
</ruby>

This route would respond to URLs such as +/photos/show/1/with_user/2+.

h4. Querystring Parameters

Rails routing automatically picks up querystring parameters and makes them available in the +params+ hash. For example, with this route:

<ruby>
match ':controller/:action/:id
</ruby>

An incoming URL of +/photos/show/1?user_id=2+ will be dispatched to the +show+ action of the +Photos+ controller. +params[:id]+ will be set to 1, and +params[:user_id]+ will be equal to 2.

h4. Defining Defaults

You do not need to explicitly use the +:controller+ and +:action+ symbols within a route. You can supply defaults for these two parameters by putting it after +=>+:

<ruby>
match 'photos/:id' => 'photos#show'
</ruby>

With this route, an incoming URL of +/photos/12+ would be dispatched to the +show+ action within the +Photos+ controller.

You can also define other defaults in a route by supplying a hash for the +:defaults+ option. This even applies to parameters that are not explicitly defined elsewhere in the route. For example:

<ruby>
match 'photos/:id' => 'photos#show', :defaults => { :format => 'jpg' }
</ruby>

With this route, an incoming URL of +photos/12+ would be dispatched to the +show+ action within the +Photos+ controller, and +params[:format]+ will be set to +jpg+.

h4. Named Routes

Regular routes need not use the +connect+ method. You can use any other name here to create a _named route_. For example,

<ruby>
match 'logout' => 'sessions#destroy', :as => :logout
</ruby>

This will do two things. First, requests to +/logout+ will be sent to the +destroy+ action of the +Sessions+ controller. Second, Rails will maintain the +logout_path+ and +logout_url+ helpers for use within your code.

h4. Route Constraints

You can use the +:constraints+ option to enforce a format for any parameter in a route:

<ruby>
match 'photo/:id' => 'photos#show', :constraints => { :id => /[A-Z]\d{5}/ }
</ruby>

This route would respond to URLs such as +/photo/A12345+. You can more succinctly express the same route this way:

<ruby>
match 'photo/:id' => 'photos#show', :id => /[A-Z]\d{5}/
</ruby>

h4. Route Globbing

Route globbing is a way to specify that a particular parameter should be matched to all the remaining parts of a route. For example

<ruby>
match 'photo/*other' => 'photos#unknown'
</ruby>

This route would match +photo/12+ or +/photo/long/path/to/12+ equally well, creating an array of path segments as the value of +params[:other]+.

h3. Formats and +respond_to+

There's one more way in which routing can do different things depending on differences in the incoming HTTP request: by issuing a response that corresponds to what the request specifies that it will accept. In Rails routing, you can control this with the special +:format+ parameter in the route.

For instance, consider the second of the default routes in the boilerplate +routes.rb+ file:

<ruby>
match ':controller(/:action(/:id(.:format)))'
</ruby>

This route matches requests such as +/photo/edit/1.xml+ or +/photo/show/2.rss+. Within the appropriate action code, you can issue different responses depending on the requested format:

<ruby>
respond_to do |format|
  format.html # return the default template for HTML
  format.xml { render :xml => @photo.to_xml }
end
</ruby>

h4. Specifying the Format with an HTTP Header

If there is no +:format+ parameter in the route, Rails will automatically look at the HTTP Accept header to determine the desired format.

h4. Recognized MIME types

By default, Rails recognizes +html+, +text+, +json+, +csv+, +xml+, +rss+, +atom+, and +yaml+ as acceptable response types. If you need types beyond this, you can register them in your environment:

<ruby>
Mime::Type.register "image/jpg", :jpg
</ruby>

h3. The Default Routes

When you create a new Rails application, +routes.rb+ is initialized with a default route:

<ruby>
match ':controller(/:action(/:id(.:format)))'
</ruby>

These routes provide reasonable defaults for many URLs, if you're not using RESTful routing.

NOTE: The default routes will make every action of every controller in your application accessible to GET requests. If you've designed your application to make consistent use of RESTful and named routes, you should comment out the default routes to prevent access to your controllers through the wrong verbs. If you've had the default routes enabled during development, though, you need to be sure that you haven't unwittingly depended on them somewhere in your application - otherwise you may find mysterious failures when you disable them.

h3. The Empty Route

Don't confuse the default routes with the empty route. The empty route has one specific purpose: to route requests that come in to the root of the web site. For example, if your site is example.com, then requests to +http://example.com+ or +http://example.com/+ will be handled by the empty route.

h4. Using +root+

The preferred way to set up the empty route is with the +root+ command:

<ruby>
root :to => 'pages#main'
</ruby>

The use of the +root+ method tells Rails that this route applies to requests for the root of the site.

Because of the top-down processing of the file, the named route must be specified _before_ the call to +root+.

h4. Connecting the Empty String

You can also specify an empty route by explicitly connecting the empty string:

<ruby>
match '' => 'pages#main'
</ruby>

TIP: If the empty route does not seem to be working in your application, make sure that you have deleted the file +public/index.html+ from your Rails tree.

h3. Inspecting and Testing Routes

Routing in your application should not be a "black box" that you never open. Rails offers built-in tools for both inspecting and testing routes.

h4. Seeing Existing Routes with +rake+

If you want a complete list of all of the available routes in your application, run the +rake routes+ command. This will dump all of your routes to the console, in the same order that they appear in +routes.rb+. For each route, you'll see:

* The route name (if any)
* The HTTP verb used (if the route doesn't respond to all verbs)
* The URL pattern
* The routing parameters that will be generated by this URL

For example, here's a small section of the +rake routes+ output for a RESTful route:

<pre>
          users GET  /users          {:controller=>"users", :action=>"index"}
formatted_users GET  /users.:format  {:controller=>"users", :action=>"index"}
                POST /users          {:controller=>"users", :action=>"create"}
                POST /users.:format  {:controller=>"users", :action=>"create"}
</pre>

TIP: You'll find that the output from +rake routes+ is much more readable if you widen your terminal window until the output lines don't wrap.

h4. Testing Routes

Routes should be included in your testing strategy (just like the rest of your application). Rails offers three "built-in assertions":http://api.rubyonrails.org/classes/ActionController/Assertions/RoutingAssertions.html designed to make testing routes simpler:

* +assert_generates+
* +assert_recognizes+
* +assert_routing+

h5. The +assert_generates+ Assertion

Use +assert_generates+ to assert that a particular set of options generate a particular path. You can use this with default routes or custom routes

<ruby>
assert_generates "/photos/1", { :controller => "photos", :action => "show", :id => "1" }
assert_generates "/about", :controller => "pages", :action => "about"
</ruby>

h5. The +assert_recognizes+ Assertion

The +assert_recognizes+ assertion is the inverse of +assert_generates+. It asserts that Rails recognizes the given path and routes it to a particular spot in your application.

<ruby>
assert_recognizes({ :controller => "photos", :action => "show", :id => "1" }, "/photos/1")
</ruby>

You can supply a +:method+ argument to specify the HTTP verb:

<ruby>
assert_recognizes({ :controller => "photos", :action => "create" }, { :path => "photos", :method => :post })
</ruby>

You can also use the RESTful helpers to test recognition of a RESTful route:

<ruby>
assert_recognizes new_photo_url, { :path => "photos", :method => :post }
</ruby>

h5. The +assert_routing+ Assertion

The +assert_routing+ assertion checks the route both ways: it tests that the path generates the options, and that the options generate the path. Thus, it combines the functions of +assert_generates+ and +assert_recognizes+.

<ruby>
assert_routing({ :path => "photos", :method => :post }, { :controller => "photos", :action => "create" })
</ruby>

h3. Changelog

"Lighthouse ticket":http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/3

* April 2, 2010: Updated guide to match new Routing DSL in Rails 3, by Rizwan Reza
* Febuary 1, 2010: Modifies the routing documentation to match new routing DSL in Rails 3, by Prem Sichanugrist
* October 4, 2008: Added additional detail on specifying verbs for resource member/collection routes, by "Mike Gunderloy":credits.html#mgunderloy
* September 23, 2008: Added section on namespaced controllers and routing, by "Mike Gunderloy":credits.html#mgunderloy
* September 10, 2008: initial version by "Mike Gunderloy":credits.html#mgunderloy