首页 > 解决方案 > 如何在 laravel 5.8 中更改默认 api 路由路径

问题描述

我只想将路由/api.php 的路由路径更改为路由/Routes/api.routes.php

这是 RouteServiceProvider.php

class RouteServiceProvider extends ServiceProvider
{
    /**
     * This namespace is applied to your controller routes.
     *
     * In addition, it is set as the URL generator's root namespace.
     *
     * @var string
     */
    protected $namespace = 'App\Http\Controllers';

    /**
     * Define your route model bindings, pattern filters, etc.
     *
     * @return void
     */
    public function boot()
    {
        //

        parent::boot();
    }

    /**
     * Define the routes for the application.
     *
     * @return void
     */
    public function map()
    {
        $this->mapApiRoutes();

        $this->mapWebRoutes();
        $this->mapProjectApiRoutes();


        //
    }

    /**
     * Define the "web" routes for the application.
     *
     * These routes all receive session state, CSRF protection, etc.
     *
     * @return void
     */

    protected function mapProjectApiRoutes(){
        Route::prefix('api')
            ->middleware(['api', 'RequestEncrypt', 'ApiKey'])
            ->namespace('App\Http\Controllers\Api')
            ->group(base_path('routes/Routes/api.routes.php'));
    }
    protected function mapWebRoutes()
    {
        Route::middleware('web')
             ->namespace($this->namespace)
             ->group(base_path('routes/web.php'));
    }

    /**
     * Define the "api" routes for the application.
     *
     * These routes are typically stateless.
     *
     * @return void
     */
    protected function mapApiRoutes()
    {
        Route::prefix('api')
             ->middleware('api')
             ->namespace($this->namespace)
             ->group(base_path('routes/api.php'));
    }
}

这就是我在 RouteServiceProvider.php 中所做的

请检查下图我收到此错误

在此处输入图像描述

我正在使用 laravel 5.8 请帮忙。

标签: laravelapiroutes

解决方案


推荐阅读