找不到Laravel 5.8 Passport 404

时间:2019-05-14 11:13:03

标签: laravel

我遵循了laravel文档https://laravel.com/docs/5.8/passport中的指南,但是它给了我一个404找不到的信息。

这是我的路线列表,在/oath/token上列出,但是当我在邮递员上访问它时,它返回我,但找不到404。

enter image description here

enter image description here


编辑1

enter image description here

编辑2

这是我当前的public/.htaccess

<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews -Indexes
    </IfModule>

    RewriteEngine On

    # Handle Authorization Header
    RewriteCond %{HTTP:Authorization} .
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_URI} (.+)/$
    RewriteRule ^ %1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

1 个答案:

答案 0 :(得分:0)

更改您的 Web服务器配置,并将根目录设置为Laravel项目的公共目录

  

Nginx或Apache