假设我在 public_html/index.html 上有一个这样的链接:
<a href="pictures/index.html">Link to picture</a>
由于“图片链接”有自己的文件夹并使用 index.html,因此如果我输入“www.mywebsite.com/pictures”,通常会隐藏该扩展名。但如果我先访问“www.mywebsite.com”,然后单击该链接,它会在地址栏中显示为“www.mywebsite.com/pictures/index.html”。如何隐藏链接中的“index.html”?我已经尝试过了,但它不起作用:
<a href="pictures/">Link to picture</a> <---this simply opens the file directory
谢谢。