Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to make a redirect from route /admin to /admin/post/list.

I set a route from /admin to IndexController::indexAction()

Then I made controller like this

class IndexController extends AbstractActionController
{
    public function indexAction()
    {
        $this->redirect()->toRoute('postList');
    }
}

It works well, but ZF2 required to make a template index/index.phtml.

How I can do this redirect better, without empty templates?

share|improve this question
consider accepting the answer if you are happy with it ;) – d.raev Feb 4 at 7:43

2 Answers

up vote 5 down vote accepted

If you add return it should work:

return this->redirect()->toRoute('postList');
share|improve this answer
It works. Thank you! – vbabaev Feb 4 at 4:41

I found initially that I couldn't make the return response option work at all, in spite of the docs and plenty of abortive attempts.

In the end I stripped out the default application module that I had included to bootstrap things "out of the box" but wasn't using for anything else, and after shifting the translator config and the factory for it, (as required by the error template - I suppose i could have removed even that, as not required) it started working.

Hey presto!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.