I've enabled clean URLs on my Yii2 application, but I can't seem to get arguments to pass to the action.
I expect this:
localhost/app/web/a/b/c/d
To map to the following:
AController->actionB($c, $d)
It's not happening.
Here's my .htaccess:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule . index.php
The relevant part of my web.php:
'urlManager' => [
                'class' => 'yii\web\UrlManager',
                'enablePrettyUrl' => true,
                'showScriptName' => false,
                'rules' => array(
                        '<controller:\w+>/<id:\d+>' => '<controller>/view',
                    '<controller:\w+>/<action:\w+>/<id:\d+>' => '<controller>/<action>',
                    '<controller:\w+>/<action:\w+>' => '<controller>/<action>',
                ),
        ],
 
     
     
    