How can i remove /index in URL in routing in cakePHP? -
i want remove /index
in url.
i have tried following in routes.php file :
router::connect('/home/:index', array('controller' => 'homes'));
and :
router::connect('/home/', array('controller' => 'homes','action'=>'index'));
try
router::connect('/home', array('controller' => 'homes','action'=>'index'));
Comments
Post a Comment