如何在HTML中更改文件夹的目录页面?

时间:2013-06-13 22:12:03

标签: html xhtml document webpage w3c

<!DOCTYPE HTML>
<html lang="en">
    <head>
        <title>HTML Document</title>
        <meta charset="UTF-8" />
    </head>
    <body>
        <a href="Folder/.">A Directory</a>
    </body>
</html>

默认情况下,当我在互联网浏览器中打开此链接时,它会显示一个白页,其中包含目录中的项目。我可以更改目录页面吗?例如:http://www.aq.com/gamedesignnotes/查看URL如何指向目录而不是HTML文档但仍显示页面。

3 个答案:

答案 0 :(得分:0)

如果导航到目录,大多数虚拟主机都会显示index.html。您可以在目录中创建一个名为index.html的新文件,并将HTML放在那里。

然后您可以转到http://yoursite.com/directory,它会在该目录中显示index.html文件(http://yoursite.com/directory/index.html)。

Here is a link to learn more

答案 1 :(得分:0)

这取决于您的网络服务器。 Apache HTTPD使用mod_autoindex生成它们,通过IndexHeadInsert等指令为您提供对apearence的控制。

答案 2 :(得分:-1)

你的问题是如何使漂亮的(seo友好的)网址正确? 如何让http://website.com/something显示特定的html页面?

这可以使用.htaccess文件使用mod重写来完成。

这是关于mod重写的堆栈溢出主题:

Semantic URLs for static HTML files with .htaccess and mod_rewrite

以下是关于漂亮网址的一些教程:

http://zenverse.net/seo-friendly-urls-with-htaccess/

http://net.tutsplus.com/tutorials/other/using-htaccess-files-for-pretty-urls/