gpt4 book ai didi

Lighttpd:让子路径指向不同的文档根目录

转载 作者:行者123 更新时间:2023-12-04 11:10:06 26 4
gpt4 key购买 nike

我有一个指向文档根目录的 lighttpd-Setup /var/www .但是,我想要 URL other/指向 /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 .

最佳答案

而不是试图设置 server.document-root ,您可以使用 mod_alias为达到这个:

server.modules = ( ..., "mod_alias" )

...

alias.url = ( "/other/" => "/some/other/dir/" )

这将创建一个别名,以便对 /other/ 的所有请求并且该文件夹内的资源将被重定向到 /some/other/dir/在文件系统上,直接向 /other/ 发出请求直接指向 /some/other/dir/ 的根,就像你想要的那样。

关于Lighttpd:让子路径指向不同的文档根目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13361099/

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