我安装了Symfony,sfDoctrineGuardUser和sfForkedDoctrineApplyPlugin,但我不知道我输入的是routing.yml。
在文档中
http://www.symfony-project.org/plugins/sfForkedDoctrineApplyPlugin
仅限:
您可以修改sfApply的URL 模块的动作。要做到这一点,简单地说 将此选项添加到app.yml文件中:
all:
#...
sfForkedApply:
#...
routes:
apply: /user/new
reset: /user/password-reset
resetRequest: /user/reset-request
resetCancel: /user/reset-cancel
validate: /user/confirm/:validate
settings: /user/settings
all:
#...
sfForkedApply:
afterLogin: after_login_route
after: after_route
# as a fallback we use old options too:
sfApplyPlugin:
afterLogin: after_login_route
after: after_route
但是不要写什么需要输入到routing.yml andi有错误:
路线“after_route”没有 存在。
和
路线“after_login_route”没有 存在。
我必须输入什么?
答案 0 :(得分:0)
将“after_code”替换为默认索引模块并追加/ index。我使用welcome / index作为例子。它在登录到该页面后重定向用户。