0

我不能让我的文件列表前面有一个名为 header.html 的 html 文件。下面是我的整个 httpd.conf 文件。

#basic config
ServerRoot "D:/phpnow/Apache-22"
Listen 8888
ServerAdmin i@tunps.com
ServerName localhost
DocumentRoot "D:/"
Options Indexes
#dir_module
LoadModule dir_module modules/mod_dir.so
#<IfModule dir_module>
#    DirectoryIndex index.html
#</IfModule>
#alias_module
LoadModule alias_module modules/mod_alias.so

#autoindex_module
#Alias /icons/ "D:/phpnow/Apache-22/icons/"
LoadModule autoindex_module modules/mod_autoindex.so
DefaultIcon /icons/unknown.gif
IndexOptions FancyIndexing  
HeaderName /header.html

header.html 位于 d:\header.html

标题的内容是:

test

网络浏览器输出是:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
 <head>
  <title>Index of /</title>
 </head>
 <body>
<h1>Index of /</h1>
<pre>      <a href="?C=N;O=D">Name</a>                    <a href="?C=M;O=A">Last modified</a>      <a href="?C=S;O=A">Size</a>  <a href="?C=D;O=A">Description</a><hr><img src="/icons/unknown.gif" alt="[DIR]"> <a href="$RECYCLE.BIN/">$RECYCLE.BIN/</a>           09-Jan-2011 17:59    -   

<img src="/icons/unknown.gif" alt="[DIR]"> <a href="test/">test/</a>               26-Dec-2010 21:10    -  
<hr></pre>

</body></html>
4

2 回答 2

1

如果您使用的是 Apache 2.2,请确保您取消了在 httpd.conf 中使用 Fancy 目录列表的注释

包括 conf/extra/httpd-autoindex.conf

于 2011-09-02T01:15:29.653 回答
0

HeaderName必须解析为具有主要内容类型text/*(例如text/html,、text/plain等)的文档。在 Windows 上,您需要AddType text/html .html在配置中包含某个位置。

于 2019-10-14T14:19:59.357 回答