cakephp acl管理重定向问题
我目前有一个表单,您可以在其中输入两个变量,然后在提交时它会重定向到这样的网址:
http://example.com/deal_user_coupons/check_qr/$var1/4var2
但是当以管理员身份登录时,它会转到:
http://example.com/albuquerque/admin/deal_user_coupons/check_qr/$var1/$var2
这使得它显示 404 页面。
我想知道如何摆脱管理目录斜杠。我尝试查看文档和一些 acl 教程,但没有任何结果。
I currently have a form where you put in two variables and on submit it redirects to a url like this:
http://example.com/deal_user_coupons/check_qr/$var1/4var2
but when logged in as admin it goes to:
http://example.com/albuquerque/admin/deal_user_coupons/check_qr/$var1/$var2
Which makes it show a 404 page.
I was wondering how to get rid of the admin directory slash. I tried looking in the documentation and at a few acl tutorials but nothing came close.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 url 选项将表单重定向到您需要的确切页面。
不要忘记在 url 数组中使用。这将从表单的操作属性中删除 admin 前缀。
You can redirect form on the exact page you need using url option.
don't forget to use in url array. this will remove admin prefix from action attribute of the form.