是否可以使用 lighttpd 在 https 虚拟主机中返回静态页面?

是否可以使用 lighttpd 在 https 虚拟主机中返回静态页面?

看起来重定向尚未完成。

如果我在浏览器中输入 URL,https://test2/static_page它可以工作,但如果我输入https://test1不重定向

SERVER["socket"] == ":443" {

  $HTTP["host"] == "test1" {
    url.redirect = ("" => "https://test2/static_page"),
    url.redirect-code = 302
  }
}

答案1

您测试过配置吗? lighttpd -f /etc/lighttpd/lighttpd.conf -tt

你加载了吗mod_redirect在配置中? lighttpd -f /etc/lighttpd/lighttpd.conf -p

在lighttpd.conf中:server.modules += ("mod_redirect")

相关内容