Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以为我的lighttpd服务器使用代理,比如在两台不同的计算机上更改 ip 地址或端口转发吗?我有 At&t uverse。
lighttpd
是的,您可以,将以下内容添加到 lighttpd.conf 会将所有对 php 文件的请求重定向到 192.168.0.10 端口 80。
proxy.server = ( ".php" => ( ( "host" => "192.168.0.10", "port" => 80 ) ) )
希望有帮助