我想在重定向到登錄的同一頁面上重定向。 Cake php有函數referer()來使用它。大多數人建議使用它與AUTH Component.But我不使用身份驗證。所以,請幫助我如何使用referer()沒有auth組件。如何使用refere()函數在cakephp中重定向?
0
A
回答
2
您是否嘗試查看文檔? http://book.cakephp.org/2.0/en/controllers.html#Controller::redirect
有它指出了同樣的事情:
If you need to redirect to the referer page you can use:
$this->redirect($this->referer());
的Referer()沒有什麼做與驗證。
0
來自CakePHP文檔。 AuthComponent將通過$ this-> Auth-> redirect()來處理重定向到您向您請求的頁面。
// UsersController.php
public function login() {
if ($this->request->is('post')) {
if ($this->Auth->login()) {
return $this->redirect($this->Auth->redirect());
} else {
$this->Session->setFlash(__('Username or password is incorrect'), 'default', array(), 'auth');
}
}
}
相關問題
- 1. cakephp $ this->重定向在函數中不起作用
- 2. 重定向CakePHP中
- 3. 「過多的重定向」使用CakePHP的SSL重定向在Heroku
- 4. 重定向如果在CakePHP中
- 5. 傳遞數據以在cakephp中使用重定向時查看
- 6. CakePHP中的URL重定向
- 7. CakePHP中的SSL重定向
- 8. 頁面重定向在cakephp
- 9. CakePHP重定向在beforefilter AppController
- 10. CakePHP的重定向在
- 11. CakePHP重定向方法不重定向
- 12. 如何在CakePHP中使用#在url中重定向,而不是%23?
- 13. 在PHP window.open和CakePHP重定向使用CakePHP
- 14. 使用CakePHP重定向後出錯
- 15. cakephp 2使用標籤重定向url
- 16. 登錄使用cakephp重定向
- 17. 重定向與的.htaccess使用CakePHP
- 18. 使用.htaccess控制CakePHP的重定向
- 19. 從cakephp中的webroot重定向用戶
- 20. 重定向在CakePHP中失敗
- 21. 在CakePHP中重定向循環
- 22. 在cakephp中設置標題重定向
- 23. Cakephp,在路由中重定向。
- 24. 如何將CakePHP中的參數重定向到外部URL
- 25. 重定向與數組參數Cakephp
- 26. 在Cakephp 2.0中使用.htaccess的URL重定向
- 27. 在包函數中重定向/攔截函數調用
- 28. 如何使用NSubstitute重定向參數
- 29. 如何使用參數重定向url?
- 30. 調用函數和重定向在笨
這很混亂。你是否要重定向登錄?像'$ this->重定向('/ users/login');'?或者你真的想重定向到引用者? – jeremyharris