redirect in varnish

Poul-Henning Kamp phk at phk.freebsd.dk
Mon Apr 28 23:47:16 CEST 2008


In message <DF3A409993D9D940BA8B02F0C396CF8A0153B3E6 at mailserver.form-studios.co
m>, "Pavel Pragin" writes:
>Hello,
>
>Can I add rule to the VCL configuration file to redirect from one URL to
>another. So if the user goes to http://www.bla.com it will redirect to
>http://www.bla1.com . What will this rule look like and will it be in
>the "sub vcl_recv" section. I would love an example.

	if (req.http.host == "www.bla.com") {
		set req.http.host = "www.bla1.com";
	}

-- 
Poul-Henning Kamp       | UNIX since Zilog Zeus 3.20
phk at FreeBSD.ORG         | TCP/IP since RFC 956
FreeBSD committer       | BSD since 4.3-tahoe    
Never attribute to malice what can adequately be explained by incompetence.



More information about the varnish-misc mailing list