View Single Post
  #7 (permalink)  
Old 02-16-2007, 07:07 PM
SpotSec's Avatar
SpotSec SpotSec is offline
Senior Member
 
Join Date: Feb 2007
Location: United States
Posts: 121
Default

Its fairly straight forward, I started out with the rewriterouter.

PHP Code:
/**
 * Instantiate router object
 */
$router = new Zend_Controller_RewriteRouter(array(
    
'useModules' => true
)); 
Basically now, by default, links are changed to be
http://mysite.com/module/controller/action
or
http://mysite.com/?module=mymodule&c...ction=myaction

The document explaining this is here Zend Framework

I'm not sure what your problem is from the information you provided, but if you can post more on your problem, I'll know what to help you with.
__________________
Zym Framework - A Zend Framework extension library w/ demo app

SpotSec Blog:
http://spotsec.com/blog
Reply With Quote