我一直在尝试链接其他网页使用
<a href="~/Pages/a.cshtml"><li>About</li></a>
但当我尝试它时,它显示了以下错误:
找不到此本地主机页找不到以下网址的网页:https://localhost:5001/pages/a.cshtml HTTP错误404
我使用的是mac版本8.6.6上的visual studio
从锚标记链接url~/pages/a.cshtml来看,您似乎正在使用MVC项目。
为了导航(或链接)页面,您需要如下内容:
<a href="@Url.Action("YourLandingPageName","YourControllerName">About</a>
检查文件夹结构,该页是否存在于相应的文件夹中