gpt4 book ai didi

apache - 将 .htaccess HeaderName 应用于所有较低级别?

转载 作者:行者123 更新时间:2023-12-04 14:34:57 24 4
gpt4 key购买 nike

我正在使用以下 .htaccess 来整理我的目录列表:

Options +Indexes
IndexOptions IgnoreCase FancyIndexing FoldersFirst NameWidth=* DescriptionWidth=* SuppressHTMLPreamble
HeaderName header.html
IndexIgnore header.html footer.html favicon.ico .htaccess .ftpquota .DS_Store icons *.log *,v *,t .??* *~ *#

它加载标题 html,其中包含:
<html><head><title>My Stuff</title>
<style type="text/css">
body {
background: #eee;
margin: 33px;
color: #333;
}
h1 {
font: 2.0em Georgia, serif;
}
h1 a:hover, h1 a:active {
text-decoration: none;
}
a:link {
text-decoration: none;
color: #555;
}
a:visited {
text-decoration: none;
color: #777;
}
a:hover, a:active {
text-decoration: underline;
color: maroon;
}
pre {
font: 0.9em/1.3em "Courier New", Courier;
margin: 3px 0;
color: #777;
}
pre img {
display: inline;
}
img {
margin: 3px 0;
}
</style>
</head>
<body><h1><a href="/test" title="My Atlassian Stuff">My Stuff</a></h1>

当我转到文件夹 /test/ 时看起来很棒.然而,当我去 /test/test2/它没有拿起以前的htaccess,从而显示出无聊的默认样式。我怎样才能让它粘住/递归地用于下层子文件夹?

最佳答案

放置一个 /之前 header.html告诉 Apache 每次都查看根目录。

HeaderName /header.html

编辑:如果根目录中不存在您的 header.html 文件,请将路径更改为您存储该文件的位置。
HeaderName /path/to/header.html

关于apache - 将 .htaccess HeaderName 应用于所有较低级别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4604857/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com