Проще написать в таком виде:
'urlManager' => [
'enablePrettyUrl' => true,
'showScriptName' => false,
//'enableStrictParsing' => true,
'rules' => [
'/' => 'site/index',
'<action:(login|signup|logout|news|contact)>' => 'site/<action>',
'authorial' => 'authorial/index',
'a/<action>' => 'authorial/<action>',
'translation' => 'translation/index',
't/<action>' => 'translation/<action>',
'books/<slug:\d+>' => 'books/view',
'books/create' => 'books/create', // Эту строку вообще не вижу смысла писать
'books/<slug:\d+>/settings' => 'books/update',
'profile/<username:\w+>' => 'profile/view',
'profile/edit' => 'update',
'w/<action>' => 'wishlist/<action>',
'c/settings' => 'chapter/settings',
'<slug:\d+>/<number:\d+>' => 'chapter/view',
'<slug:\d+>/<number:\d+>/editor' => 'chapter/update',
],
],