2

假设我在 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

谢谢。

4

1 回答 1

1

将以下内容添加到您的httpd.conf文件中:

DirectoryIndex index.html

默认情况下,如果你不传入文件名index.html而不是目录内容

于 2012-11-28T02:01:50.520 回答