href links 每次我单击一个新的 link 时都会复制路径中的文件夹

href links duplicating the folder in the path every time i click a new link

我有这个文件夹结构

frontend -index.html 
         -about.html
         -map.html 

然后我使用 links 访问它们,如下所示

 <a href="./frontend/about.html"  class="btn btn-lg btn-secondary" >Learn more</a>
<a class="nav-link" href="./frontend/page2.html"> Map <span class="sr-only">

然而,如果我再次单击 link,url 将显示如下

Cannot GET /frontend/frontend/about.html

不确定我做错了什么,第一次点击将我带到正确的页面 url,然后后续点击只是复制文件夹名称

删除点:href="/frontend/about.html"