LoginSignup
3
1

More than 5 years have passed since last update.

CakePHP3:prefixルーティングを無効にする

Last updated at Posted at 2017-01-14

adminのプレフィックスルーティングが効いているページにおいて、

index.ctp
$this->Html->link(__('View'), [
    'controller' => 'Articles', 
    'action' => 'view', 
    $article->id
]); 

と記述すると、リンク先のURLは/admin/Articles/view/idになります。prefixルーティングを無効にする場合はfalseを指定しましょう:

index.ctp
$this->Html->link(__('View'), [
    'prefix' => false, 
    'controller' => 'Articles', 
    'action' => 'view', 
    $article->id
]);
3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1