我的应用程序上有两个入口脚本,如此处所指定。如何设置将/example.com/admin重定向到example.com/backend.php
的路由感谢。
答案 0 :(得分:3)
查看有关URL管理的文档:
在不知道您的设置细节的情况下,在protected/config/main.php
(如果main.php
是您的应用程序配置文件)中,您将需要以下内容:
// note: this is extracted from a project which uses 'friedly urls',
// depending on your setup, YMMV
'urlManager'=>array(
'urlFormat'=>'path',
'showScriptName' => false,
'rules'=>array(
'<controller:\w+>/<id:\d+>'=>'<controller>/view',
'/admin'=>'/backend', // <-- define your custom routes/redirects here
),
),