I used varnish to redirect mobile agents to mobile site:
sub vcl_recv {
if (req.http.user-agent ~ "iP(hone|od)|android|(?i)^samsung|(?i)android|(?i)android 3") {
error 750 "Moved Temporarily";
}
}
sub vcl_error {
if (obj.status == 750) {
set obj.http.Location = "http://m.website.com" + req.url;
set obj.status = 301;
return(deliver);
}
}
By the way, on mobile site we have the url:
http://www.website.com/?mredirect=yes
Is there any way to force mobile agents to desktop version? It means have url will work.
Thanks!
add a cookie (in your website) and than check in varnish VCL:
in your server and in
vcl_hash
you need to check this header, and than UNSET for cache usage.