我遵循了laravel文档https://laravel.com/docs/5.8/passport中的指南,但是它给了我一个404找不到的信息。
这是我的路线列表,在/oath/token
上列出,但是当我在邮递员上访问它时,它返回我,但找不到404。
编辑1
编辑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>
答案 0 :(得分:0)
更改您的 Web服务器配置,并将根目录设置为Laravel项目的公共目录。
Nginx或Apache