在前台控制器文件上面添加一层后访问接口报404错误
config/route.php
Route::group('/v1/user', function () {
Route::post('/login', [app\controller\v1\UserController::class,'login']); //登录
});
app/UserController/v1/UserController.php
<?php
namespace app\controller\v1;
class UserController{
public function login(Request $request){
return json(['code' => 0,'msg' =>'登录成功','data'=>[]]);
}
}
<html>
<head>
<title>404 Not Found - webman</title>
</head>
<body>
<center>
<h1>404 Not Found</h1>
</center>
<hr>
<center>webman</center>
</body>
</html>
我试了一下你的,不存在你说的那种情况,仔细检查一下吧
嗯嗯,是网站配置的问题了。谢谢
关闭默认路由试试呢
和这个应该没关系,这个我也试过了
重启了?