在特定文件夹上添加 minType?

在特定文件夹上添加 minType?

我安装了 lighttpd-1.4.28 来提供静态文件服务,但我想在特定文件夹而不是所有文档根目录中添加 mintype(html),该怎么做?

答案1

我不熟悉 mintype,但 lighttpd 的条件配置文件功能非常强大。请查看“条件配置”下的此 URL:http://redmine.lighttpd.net/wiki/1/Docs:配置

具体来说,您可以使配置块仅适用于特定的 URL 正则表达式。

他们的例子:

# disable directory-listings for /download/*
dir-listing.activate = "enable" 
$HTTP["url"] =~ "^/download/" {
    dir-listing.activate = "disable" 
 }

对于你的情况你可以尝试

$HTTP["url"] =~ "REGEX MATCHING SPECIFIC FOLDER" {
    # mintype settings you want for folder go here
}

相关内容