Home > Backend Development > PHP Tutorial > kohana路由有关问题

kohana路由有关问题

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:47:46
Original
941 people have browsed it

kohana路由问题
如果我路由设置成这样:

Route::set('sections', '<directory>(/<controller>(/<action>(/<id>)))',<br />
    array(<br />
        'directory' => '(admin|affiliate)'<br />
    ))<br />
    ->defaults(array(<br />
        'controller' => 'index',<br />
        'action'     => 'index',<br />
    ));
Copy after login

在地址栏中我应该怎么输入才能访问

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template