说我在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
感谢。
答案 0 :(得分:1)
将以下内容添加到httpd.conf
文件中:
DirectoryIndex index.html
默认情况下,如果您没有传入文件名index.html
则会呈现而不是目录内容