当前位置:Gxlcms > PHP教程 > yii2resetfulapi路由404

yii2resetfulapi路由404

时间:2021-07-01 10:21:17 帮助过:5人阅读

yii2 restful api 使用的advanced 版本,按照教程搭建的api

路由也写了
'urlManager' => [

        'enablePrettyUrl' => true,
        'enableStrictParsing' => true,
        'showScriptName' => false,
        'rules' => [
            [
            '/' => '/view',
            '//' => '/',
            '/' => '/',
                'class' => 'yii\reset\UrlRule',
                'controller' => [
                    'v1/user'
                ]
            ]

        ],
    ],
    
    

为什么按照文档的路由规则访问就提示404呢:
http://localhost/api/v1/users

回复内容:

yii2 restful api 使用的advanced 版本,按照教程搭建的api

路由也写了
'urlManager' => [

        'enablePrettyUrl' => true,
        'enableStrictParsing' => true,
        'showScriptName' => false,
        'rules' => [
            [
            '/' => '/view',
            '//' => '/',
            '/' => '/',
                'class' => 'yii\reset\UrlRule',
                'controller' => [
                    'v1/user'
                ]
            ]

        ],
    ],
    
    

为什么按照文档的路由规则访问就提示404呢:
http://localhost/api/v1/users

应该是 http://localhost/v1/users

在你的配置文件中:web.php 中添加modules,代码如下:

'modules' => [

    'v1' => [
        'basePath' => '@app/modules/v1',
        'class' => 'app\modules\v1\Model',
    ],
],

注意:modules和components同级

人气教程排行