我最近刚刚阅读了这个文档,我的问题是,为什么不添加一些随机的不同长度的headers,比如
HTTP 200 OK
Cache-Control:public, max-age=60
Content-Encoding:gzip
Content-Length:11669
Content-Type:text/html; charset=utf-8
asdfnak4r9q38:asdbf2984rqf // Header with random name and random value with various length
此外,我们还可以在html首页添加一些随机数据。
为什么我错了?为什么这个
我正在构建一个平台,其中的主域是example.com。服务器在Apache2中使用CentOS 7。
我的用户的URL将是username.example.com,它实际上加载了example.com/username中的内容,这样:
mjohnson.example.com加载example.com/mjohnson中的内容
from /about加载example.com/mjohnson/about中的内容。
from /加载example.com/jsmith/的内容。
这个设置最好的方法是什么?我完全可以访问httpd.conf配置文件。
在我的一个观点中,我有一个代码:
raise Http404
当DEBUG=False Django呈现模板500.html而不是正确的404.html时!我不明白为什么!
编辑:当DEBUG=True我得到标准的一个(由Django)
Page not Found (404)
You're seeing this error because you have DEBUG = True in your Django settings file. Change that to False, and Django will display a standard 404 page.
更重要的