Reputation: 1
I want to remove /index
in URL.
I have already tried the following in routes.php file :
Router::connect('/Home/:index', array('controller' => 'Homes'));
and :
Router::connect('/Home/', array('controller' => 'Homes','action'=>'index'));
Upvotes: 0
Views: 1015
Reputation: 2860
Use this code for create link
<?php
echo $this->Html->link(__('YOUR_TEXT'),array('controller' => 'Homes', 'action' => 'index',array('class' => "", 'id' => ""));
?>
If you are creating link with this code then if is there any change made in routes then cakephp will update link according to that
Upvotes: 0
Reputation: 2860
Try
Router::connect('/Home', array('controller' => 'Homes','action'=>'index'));
Upvotes: 2