Доброе утро. Уже часов 6 мучаю проблему. Что не пробовал - не помогает. Суть: по
инструкции yii2 точь в точь переписал simple yii application, но urlManager упорно не находит мой контроллер пока включены красивые ссылки. В обычном режиме все работает замечательно. Вот скрин проблемы:
----------------------------------------------------------------------------------------------------------------------------------
Model:namespace app\models;
use yii\db\ActiveRecord;
class User extends ActiveRecord
{
public static function tableName () {
return 'User';
}
}
Controller: namespace app\controllers;
use yii\rest\ActiveController;
class UserController extends ActiveController
{
public $modelClass = 'app\models\User';
}
Configs: 'components' => [
'request' => [
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
'parsers' => [
'application/json' => 'yii\web\JsonParser',
],
'cookieValidationKey' => 'rAdPF-K0vJgsWJQWlN8Ygg9zg6aXtxsV',
],
'cache' => [
'class' => 'yii\caching\FileCache',
],
'user' => [
'identityClass' => 'app\models\User',
'enableAutoLogin' => true,
],
'errorHandler' => [
'errorAction' => 'site/error',
],
'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
// send all mails to a file by default. You have to set
// 'useFileTransport' to false and configure a transport
// for the mailer to send real emails.
'useFileTransport' => true,
],
'log' => [
'traceLevel' => YII_DEBUG ? 3 : 0,
'targets' => [
[
'class' => 'yii\log\FileTarget',
'levels' => ['error', 'warning'],
],
],
],
'db' => $db,
'urlManager' => [
'enablePrettyUrl' => true,
'enableStrictParsing' => true,
'showScriptName' => false,
'rules' => [
['class' => 'yii\rest\UrlRule', 'controller' => 'user'],
],
],
]
.htaccess: Options +FollowSymLinks
IndexIgnore */*
RewriteEngine on
# Если запрос не начинается с web, добавляем его
RewriteCond %{REQUEST_URI} !^/(web)
RewriteRule (.*) /web/$1
# Если файл или каталог не существует, идём к /web/index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /web/index.php