Skip to content

Instantly share code, notes, and snippets.

@mattiasghodsian
Created August 31, 2023 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattiasghodsian/1f8c688cde9a42585bbca990098e32da to your computer and use it in GitHub Desktop.
Save mattiasghodsian/1f8c688cde9a42585bbca990098e32da to your computer and use it in GitHub Desktop.
[Laravel] Removing API Prefix for API Subdomains

If you are utilizing Laravel as a backend platform serving API routes via a subdomain https://api.example.com/, you may find that the default routing configuration for the api route is not needed.

Edit /app/Providers/RouteServiceProvider.php and locate the prefix('api') line and comment it out or remove it altogether, in my case i don't need the web route group so i commented that part out.

<?php

namespace App\Providers;

use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\Route;

class RouteServiceProvider extends ServiceProvider
{
    /**
     * The path to your application's "home" route.
     *
     * Typically, users are redirected here after authentication.
     *
     * @var string
     */
    public const HOME = '/home';

    /**
     * Define your route model bindings, pattern filters, and other route configuration.
     */
    public function boot(): void
    {
        RateLimiter::for('api', function (Request $request) {
            return Limit::perMinute(60)->by($request->user()?->id ?: $request->ip());
        });

        $this->routes(function () {
            Route::middleware('api')
                // ->prefix('api')
                ->group(base_path('routes/api.php'));

            // Route::middleware('web')
            //     ->group(base_path('routes/web.php'));
        });
    }
}

Result

$ From
https://api.example.com/api/{route}

$ To 
https://api.example.com/{route}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment