Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

Laravel 8 API Subdomain Unreachable

I am trying to use domain() instead of prefix() for my API's endpoint. Im not able to reach this endpoint

ENV

API_DOMAIN=api.rest-api.test

RoutServiceProvider.php

        Route::domain(env('API_DOMAIN'))
            ->middleware('api')
            ->namespace($this->namespace)
            ->group(base_path('routes/api.php'));

API.php

Route::get('/person', function(){
    $person = [
        'first-name' => 'Bob',
        'last-name' => 'Tables'
    ];

    return $person;
});

Postman Error

Error: getaddrinfo ENOTFOUND api.rest-api.test

EDIT : I neglected to mention that this worked properly with the default prefix() option.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

The tutorial I was watching was using Valet (Mac only) so their domains were mapped automatically. For Windows users, you will need to manually add domains to your etc/hosts file.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...