「Php/Symfony/Symfony2/routing」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→outingのフォーマット(パラメータなし)) |
|||
行12: | 行12: | ||
src/Acme/HelloBundle/Controller/DefaultController.phpのindexAction()にアクセスする | src/Acme/HelloBundle/Controller/DefaultController.phpのindexAction()にアクセスする | ||
− | == | + | ==routingのフォーマット(パラメータなし)== |
acme_other_homepage: | acme_other_homepage: | ||
path: /other | path: /other | ||
defaults: { _controller: AcmeHelloBundle:Other:index } | defaults: { _controller: AcmeHelloBundle:Other:index } |
2017年1月13日 (金) 18:28時点における版
メインrouting.ymlファイルの場所
- app/config/routing.yml
Bundleごとのrouting.ymlファイルの場所
- src/Acme/HelloBundle/Resources/config/routing.yml
routingのフォーマット
acme_hello_homepage: path: /hello/{name} defaults: { _controller: AcmeHelloBundle:Default:index }
src/Acme/HelloBundle/Controller/DefaultController.phpのindexAction()にアクセスする
routingのフォーマット(パラメータなし)
acme_other_homepage: path: /other defaults: { _controller: AcmeHelloBundle:Other:index }