我的后端网址管理员遇到了问题,这显然与我的前端做了不同的事情。
前端网址:www.example.com/frontend/web/site/index
后端网址:www.example.com/backend/web/index.php/site/login
在上述请求时,两个网址都正常工作。但是当我在没有index.php
的情况下调用后端url时,我只收到404.我的网站/索引也没有用,因为当我通过backend/web/index.php/site/index
输入它时,我被重定向到{{1立即。我认为这两个人有同样的问题。但这很奇怪,因为backend/web/index.php/site/login
几乎都是平等的:
解决方案:缺少main.php
个文件
/backend/web/.htaccess
前端/配置/ main.php
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php
后端/配置/ main.php
<?php
$params = array_merge(
require __DIR__ . '/../../common/config/params.php',
require __DIR__ . '/../../common/config/params-local.php',
require __DIR__ . '/params.php',
require __DIR__ . '/params-local.php'
);
return [
'id' => 'app-frontend',
'basePath' => dirname(__DIR__),
'bootstrap' => ['log'],
'controllerNamespace' => 'frontend\controllers',
'components' => [
'request' => [
'csrfParam' => '_csrf-frontend',
],
'user' => [
'identityClass' => 'common\models\User',
'enableAutoLogin' => true,
'identityCookie' => ['name' => '_identity-frontend', 'httpOnly' => true],
],
'session' => [
'name' => 'advanced-frontend',
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
],
],
'params' => $params,
];
如果有人可以帮助我,我会很高兴的。请直接询问furth或缺少信息。