/etc/lighttpd/vhosts
中的
$HTTP["url"] =~ "^/sr/" {
proxy.server = (
"" => ( (
"host" => "x.x.x.x",
"port" => 80
) )
)
}
mod_proxy - 已启用
但没有任何问题,example.com/sr/
转发到第一台服务器上的404页面
答案 0 :(得分:-1)
您的$HTTP["url"] =~ "^/sr/" {
是否在$HTTP["host"]
条款中?
你试过了吗?
$HTTP["host"] =~ "(^sample.com)$" {
proxy.server = (
"/sr/" => ( (
"host" => "x.x.x.x",
"port" => 80
) )
)
}