This is a discussion on 502 apache proxy error with IE! ARGH! within the Linux Web Servers forums, part of the Web Server and Related Forums category; Accessing my site in IE gives a 502 proxy error when accessing: / test.php?ID="18" It appears ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Accessing my site in IE gives a 502 proxy error when accessing: /
test.php?ID="18" It appears that the double quotes are handled differently, and the servers behind the load balancer choke when they get a back slash, complaining of a malformed http request. Is there some way to undo what IE does to the query string via rewrite or some such? I've been at this all day, please save me before it's too late. from access.log: Firefox/Mac: "GET /test.php?ID=%2218%22 HTTP/1.1" 200 506 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.11) Gecko/20071127 Firefox/2.0.0.11" IE/Win: "GET /test.php?ID=\"18\" HTTP/1.1" 502 419 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; InfoPath.1; .NET CLR 2.0.50727)" |
|
|||
|
"Brad Carson" <brad.carson@gmail.com> wrote in message
news:5bab38d7-dd28-4ab1-b7de-4728ec8f2802@q21g2000hsa.googlegroups.com... > Accessing my site in IE gives a 502 proxy error when accessing: / > test.php?ID="18" > It appears that the double quotes are handled differently, and the > servers behind the load balancer choke when they get a back slash, > complaining of a malformed http request. > > Is there some way to undo what IE does to the query string via rewrite > or some such? > > I've been at this all day, please save me before it's too late. > > > from access.log: > Firefox/Mac: > "GET /test.php?ID=%2218%22 HTTP/1.1" 200 506 "-" "Mozilla/5.0 > (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.11) Gecko/20071127 > Firefox/2.0.0.11" > > IE/Win: > "GET /test.php?ID=\"18\" HTTP/1.1" 502 419 "-" "Mozilla/4.0 > (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; > InfoPath.1; .NET CLR 2.0.50727)" > Quotes are not valid in a URL which is why the firefox turns them into %22. I'd suggest you change your site so that the URLs it uses follow the RFC http://www.ietf.org/rfc/rfc1738.txt |
| Thread Tools | |
| Display Modes | |
|
|