Opened 16 years ago
Closed 16 years ago
#7788 closed (wontfix)
Response HTTP/1.0 (/django/core/servers/basehttp.py http_version = "1.0")
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | HTTP handling | Version: | 0.96 |
Severity: | Keywords: | HTTP/1.0 HTTP/1.1 | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
In IE6 the Response is required to be HTTP/1.1 to get the browser to work with Cache-Control or Pragma. Was trying to prevent back button being used to return to a logged in screen after clicking logged out, my method worked in IE7 and FF using http_version="1.0" but had to change this to http_version="1.1" for it to work in IE6. Is the http_version going to be changed to 1.1 in the future, and are there any know issues with using 1.1?
Change History (2)
comment:1 by , 16 years ago
Keywords: | HTTP/1.1 added; HTTP/1/1 removed |
---|
comment:2 by , 16 years ago
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Not worth doing anything here. You are talking about the internal development server. It is intentionally very simplistic and if you want to do things like change the HTTP protocol that must be used (which is something you may not have control over in real life, so be careful about relying on it), you should use a proper webserver.