php 当我点击配置文件链接时,我想被定向到用户配置文件页面,但它显示404 [已关闭]

nhhxz33t  于 2022-12-17  发布在  PHP
关注(0)|答案(1)|浏览(83)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

昨天关门了。
Improve this question
这是blade文件中的代码

<li><a class="dropdown-item" href="dashboard/user/userprofile">Profile</a></li>
mcvgt66p

mcvgt66p1#

这将是有用的,有更多的信息,您的问题。从使用的标签,我了解到这是一个Laravel应用程序。
您是否为该URL创建了路由?请查看routes/web.php文件。
再加上这样的东西来测试就不行了。

Route::get('/dashboard/user/userprofile', function () {
    return 'Hello World';
});

参见:https://laravel.com/docs/9.x/routing

相关问题