Mesajın sonra yönlendir

0 Cevap php

Formu (yöntem POST) sunulmasından sonra ben belirli bir sayfaya kullanıcıyı yönlendirmek istiyorum.

genellikle i basit bir çizgi kullanılır

header("Location: /path/to/redirect/");
exit;

Zend_Controller_Action yöntemi vardır _redirect, örneğin:

$this->_redirect("/path/to/redirect/");

But it have one simple problem: if i refresh page (press F5) last controller action is activated. So its like double post.
Of course i can use old fashion way, but I just want find the zend style redirect.

Edit: p.s after post redirect i want have cleaned form data. Of course i can use own method with header("location:/path") but I searching it implemented in standart zf

Herhangi bir fikir?

0 Cevap