Index of网站 html代码样例
时间: 2023-12-30 11:05:18 浏览: 201
"Index of" 页面通常是由服务器自动生成的,因此不需要手动编写 HTML 代码。当你访问一个目录时,如果该目录下没有默认主页文件(如 index.html),服务器就会自动显示一个包含该目录下所有文件和子目录的索引页面,称为 "Index of" 页面。
然而,如果你想要自定义 "Index of" 页面的外观和行为,你可以创建一个 HTML 文件作为索引页面的头部或尾部。以下是一个示例代码,可以作为头部或尾部使用:
```
<!DOCTYPE html>
<html>
<head>
<title>Index of /path/to/your/directory</title>
<style>
body {
font-family: sans-serif;
font-size: 14px;
margin: 0;
padding: 0;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 10px;
border: 1px solid #ccc;
text-align: left;
}
th {
background-color: #eee;
}
td:first-child {
width: 70%;
}
td:last-child {
width: 30%;
text-align: center;
}
a {
color: #000;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Index of /path/to/your/directory</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Last modified</th>
<th>Size</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="#">File name</a></td>
<td>YYYY-MM-DD HH:MM:SS</td>
<td>File size</td>
</tr>
<tr>
<td><a href="#">Directory name/</a></td>
<td>YYYY-MM-DD HH:MM:SS</td>
<td>-</td>
</tr>
</tbody>
</table>
</body>
</html>
```
将其中的 `/path/to/your/directory` 替换为你想要自定义的目录路径。这段代码创建了一个包含文件名、修改时间和文件大小的表格,可以通过链接访问文件或子目录。
注意:这只是一个示例代码,你可以根据需要修改样式和内容。但是,如果你使用的是服务器自动生成的 "Index of" 页面,那么任何手动添加的 HTML 代码都可能会被删除或覆盖。
阅读全文