我有一个指向 document-root 的 lighttpd-Setup /var/www
。但是,我希望 URLother/
指向/some/other/dir
. 我正在使用以下配置进行此操作:
$HTTP["url"] =~ "^/other($|/)" {
server.document-root = "/some/other/dir"
}
但是,如果我访问“http://myhost/other”,lighttpd 会尝试访问/some/other/dir/other
而不是仅访问/some/other/dir
. 是否有可能以某种方式剥离/other
但保留任何进一步的 URL 段?因此,例如,http://myhost/other/sub/foo.txt
应该指向/some/other/dir/sub/foo.txt
.