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.
ニスを使用して、ドメイン ルート (例: http://mydomain.com/ ) をリダイレクトし、他のすべてのバックエンドを設定するにはどうすればよいですか? (例http://mydomain.com/everythingelse )
vcl_recv で次の URL マッチを使用できます。
if (req.url == "/") { #redirect actions } else { set req.backend = somebackendname; }