1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| # You can find more information about this file on the symfony website:
# http://www.symfony-project.org/refer.../en/10-Routing
job_show_user:
url: /job/:company/:location/:id/:position_slug
class: sfDoctrineRoute
param: { module: job, action: show }
requirements:
id: \d+
sf_method: [get]
# default rules
homepage:
url: /
param: { module: default, action: index }
# generic rules
# please, remove them by adding more specific rules
default_index:
url: /:module
param: { action: index } |
Partager