0

目前,我的网站中有一些 URL,如下所示:

.com/page/about-company
.com/page/approval-license
.com/page/recruitment-areas

为此,我在配置中编写了规则,例如:

'rules' => array(

            'page/<slug:[a-zA-Z0-9-_\/]+>/' => 'page/view',

        ),

但我想从这些 URL中删除 word page 。我想要这样的网址:

.com/about-company
.com/approval-license
.com/recruitment-areas

我能做些什么?请指导。

4

1 回答 1

0

你可以试试这个:

'rules' => array(

        '<slug:[a-zA-Z0-9-_\/]+>' => 'page/view',

    ),

或者

'rules' => array(

        '<slug>' => 'page/view',

    ),

这样,如果你的 url 是 like example.com/some-text,那么viewaction fromPageController就会被执行。

于 2015-03-01T16:07:07.060 回答