dennis.winter wrote:
I already thought of routes, but isn't it too varying for routes?!
Nope :),
$router->addRoute('article', new Zend_Controller_Router_Route(
'weblog/:category/:year/:month/:day/:article',
array(
'module' => 'blog',
'controller' => 'article',
'action' => 'index'),
array(
'year' => '\d+',
'month' => '\d+',
'day' => '\d+')))
Requests to URLs matching that will be sent to the index action of the
article controller in the blog module. The parameters category, year,
month, day and article will be available via the _getParam() method of
the action controller. The third argument specifies that that year,
month and day values must be numeric in order for the route to match.
--
Jack