Ruby on Rails Routes - difference between get and match

Viewed 14549

What would the difference be?

Example Match:
match 'photos/show' => 'photos#show'

Example Get:
get 'photos/show'

Wouldn't both make it possible to reach the photos/show URL and also use the show action in the photos controller?

Thanks

1 Answers
Related