【发布时间】:2016-04-05 16:22:12
【问题描述】:
Web 前端 - localhost(LAMP 中的目录 apache2/htdocs),Web 后端 - localhost:8080/backend (apache2/htdocs/backend)。 Yii 高级应用程序与 htdocs 位于同一目录中 - mafia-yii (apache2/mafia-yii)。后端/配置中的文件 main.php:
'components' => [
....
'urlManager' => [
// here is your normal backend url manager config
'class' => 'yii\web\UrlManager',
'baseUrl' => 'http://localhost/backend',
],
'urlManagerFrontend' => [
'class' => 'yii\web\UrlManager',
'hostInfo' => 'http://localhost',
'baseUrl' => 'http://localhost',
],
],
文件 ~/lampstack-7.0.4-0/apache2/mafia-yii/backend/views/layouts/main.php :
....
$menuItems[] = ['label' => 'Backend', 'url' => ['/site/index']];
$menuItems[] = ['label' => 'Fronend', 'url' => [Yii::$app->urlManagerFrontend->createUrl('/site/index')]];
....
结果: http://localhost:8080/backend/index.php?r=backend%2Findex.php%3Fr%3Dsite%252Findex
未找到 (#404)
【问题讨论】:
标签: yii2