You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
539 B
21 lines
539 B
# Unfold Bundle Routes |
|
# Mount these routes for subdomain-based site rendering |
|
|
|
# Theme assets route - must come before catch-all |
|
unfold_theme_assets: |
|
path: /assets/themes/{theme}/{path} |
|
controller: App\UnfoldBundle\Controller\ThemeAssetController |
|
requirements: |
|
theme: '[a-zA-Z0-9_-]+' |
|
path: '.+' |
|
methods: [GET] |
|
|
|
# Main site controller - catch-all |
|
unfold_site: |
|
path: /{path} |
|
controller: App\UnfoldBundle\Controller\SiteController |
|
requirements: |
|
path: '.*' |
|
defaults: |
|
path: '' |
|
|
|
|