user2742023
user2742023

Reputation: 1

How can i remove /index in URL in routing in cakePHP?

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

Answers (2)

Er.KT
Er.KT

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

Er.KT
Er.KT

Reputation: 2860

Try

Router::connect('/Home', array('controller' => 'Homes','action'=>'index'));

Upvotes: 2

Related Questions