redirect - How to change the root in bootstrap (PHP) -


i using kohana 3.2.(php) need reset xyz.com/ar/contoller/method/argument. working fine.

route::set('default', '(<country_param>(/<controller>(/<action>(/<id>(/<method>)))))') ->defaults(array('controller' => 'auctions','action'  => 'live','method' => null)); 

now need xyz.com/ar/modules/controller/method/argument. changed root.

    route::set('default', '(<country_param>(/<user_param>(/<controller>(/<action>(/<id>(/<method>))))))') ->defaults(array('controller' => 'auctions','action'  => 'live','method' => null)); 

but not working. can advise?

maybe need define pattern of variables

route::set('new_default', '(<country_param>(/<user_param>(/<controller>(/<action>(/<id>(/<method>))))))')     ->defaults(         array(             'controller' => 'auctions',             'action'  => 'live',             'method' => null,             'country_param' => '[a-za-z0-9_]+',             'user_param' => '[a-za-z0-9_]+',     )); 

and don't forget, every route must has unique name.


Comments

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -