Lighttpd 端口/代理别名重定向

Lighttpd 端口/代理别名重定向

我正在尝试将别名重定向到内部端口。

[https]://www.site.com/place ---> [http]://localhost:10000

我当前的配置条目只是将 URL 更改为 [https]://www.site.com:10000,而不是保留该 URL。

$HTTP["url"] =~ "^/place" {
  $HTTP["host"] =~ ".*" {
    url.redirect = ( "^/(.*)" => "http://%0:10000" )
  }
}

我希望 URL 保持为 site.com/place

答案1

将 $0 添加到网址

$HTTP["url"] =~ "^/place" {
  $HTTP["host"] =~ ".*" {
    url.redirect = ( "^/(.*)" => "http://%0:10000$0" )
  }
}

相关内容