redirect

About

There are several ways to redirect in eZ Publish either using html variables in your edit template, workflow event, template operator or in your custom module.

Example

Redirect in custom module

Example:

<?php

$module =& $Params['Module'];

return $module->redirectTo( '/news' );

?>

Reference