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

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -