I have a list of 100 routes belonging to our old (non-Zend Framework) website that I need to redirect to our new routes.

I am already matching/routing new custom routes in the Bootstrap file:

protected function _initRoutes()
{
    $router = Zend_Controller_Front::getInstance()->getRouter();
    $router->addRoute('myroute', 
        new Zend_Controller_Router_Route_Static('/new/route/1234',
            array('controller' =>'brands', 'action' => 'view', 'id' => '4')
    ));
}

How can I 301 redirect these old routes to the new custom routes?

Solution:

You can't redirect at the same time as adding a route, so you will have to create a controller action to route to. Then you can do the redirection.

# create this function in your bootstrap
protected function _initRoutes()
{
    $router = Zend_Controller_Front::getInstance()->getRouter();

    //new routes
    $router->addRoute('myroute', 
        new Zend_Controller_Router_Route_Static('/new/route/1234',
            array('controller' =>'brands', 'action' => 'view', 'id' => '4')
    ));

    //old routes
    $oldRoutes = array(
        '/old/route/number/1' => '/new/route/1234',
    }
    foreach ($oldRoutes as $oldRoute => $newRoute) {
        $router->addRoute($oldRoute,  new Zend_Controller_Router_Route_Static($oldRoute, array('controller' =>'old-routes', 'action' => 'redirect', 'new-route' => $newRoute)));
    }
}

And the controller:

class OldRoutesController extends Zend_Controller_Action
{    
    public function redirectAction()
    {
        $newRoute = $this->_getParam('new-route');
        return $this->_redirect($newRoute, array('code' => 301));
    }
}
link|improve this question

70% accept rate
Why sending 301 when doing no redirect? From what I can see you just do map the old routes to the new ones without redirect? – Fge Nov 19 '10 at 20:49
sorry, bad example. I am trying to redirect, not route. – Andrew Nov 19 '10 at 20:51
I have updated the example to be more clear – Andrew Nov 19 '10 at 20:54
You're still asking about routers - they have nothing to do with redirects and the (http) response. At the time you init routers you don't have any response object as the request isn't dispatched yet. So the only way to redirect there is with php's header function. But to be honest I don't understand your question. I guess you want the old urls/routes ('/new/route/1234') to be mapped to the new controller/actions? If that's the case you don't do any redirect yet. If it's already redirected it's too late for a http-status code. Where does the actual redirect happen (code?)? – Fge Nov 19 '10 at 21:13
feedback

2 Answers

up vote 4 down vote accepted

i've done it like this

  1. Add a Zend_Route_Regexp route as the old route
  2. Add Controller and action for the old route
  3. Add logic to parse old route
  4. Add $this->_redirect($url, array('code'=>301)) for this logic
link|improve this answer
I think that's what I'll do. Thanks! – Andrew Nov 19 '10 at 22:25
feedback

There are a few approaches to solve this issue.

The easiest is probably to just use your .htaccess file to do a RewriteRule pattern substitution [R=301]

You could also detect what route was used in the controller and redirect based on that:

public function preDispatch() {
  $router = $this->getFrontController()->getRouter();
  if ($router->getCurrentRouteName() != 'default') {
    return $this->_redirect($url, array('code'=>301));
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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