Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在views.py 中指定HTTP 响应版本为HTTP/0.9、HTTP/1.0 或HTTP/1.1。我怎么能那样做?我可以使用像 http_version 这样的变量吗?
提前致谢!
您不能在 Django 视图中更改 http 协议。
您必须在 HTTP 服务器级别而不是在应用程序的视图级别进行更改。
例如,如果您使用的是 Apache,则必须更改 Apache 配置。