|
|
|
|
|
by Shish2k
4273 days ago
|
|
Not generating the www redirect (IMO that's more of a web server / application layer job than a cache job); but you can make varnish cache www and non-www objects together: if (req.http.host == "www.foo.net") {
set req.http.host = "foo.net";
}
|
|