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.
2 台の異なるコンピューターで IP アドレスやポート転送を変更するなど、サーバーにプロキシを使用できlighttpdますか?私は At&t uverse を持っています。
lighttpd
はい、できます。以下を lighttpd.conf に追加すると、php ファイルに対するすべてのリクエストが 192.168.0.10 ポート 80 にリダイレクトされます。
proxy.server = ( ".php" => ( ( "host" => "192.168.0.10", "port" => 80 ) ) )
それが役立つことを願っています