505.html 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>505 错误 - phpstudy</title>
  6. <meta name="keywords" content="">
  7. <meta name="description" content="">
  8. <meta name="renderer" content="webkit">
  9. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  10. <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
  11. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  12. <meta name="apple-mobile-web-app-capable" content="yes">
  13. <meta name="format-detection" content="telephone=no">
  14. <meta HTTP-EQUIV="pragma" CONTENT="no-cache">
  15. <meta HTTP-EQUIV="Cache-Control" CONTENT="no-store, must-revalidate">
  16. <meta HTTP-EQUIV="expires" CONTENT="Wed, 26 Feb 1997 08:21:57 GMT">
  17. <meta HTTP-EQUIV="expires" CONTENT="0">
  18. <style>
  19. body{
  20. font: 16px arial,'Microsoft Yahei','Hiragino Sans GB',sans-serif;
  21. }
  22. h1{
  23. margin: 0;
  24. color:#3a87ad;
  25. font-size: 26px;
  26. }
  27. .content{
  28. width: 45%;
  29. margin: 0 auto;
  30. }
  31. .content >div{
  32. margin-top: 200px;
  33. padding: 20px;
  34. background: #d9edf7;
  35. border-radius: 12px;
  36. }
  37. .content dl{
  38. color: #2d6a88;
  39. line-height: 40px;
  40. }
  41. .content div div {
  42. padding-bottom: 20px;
  43. text-align:center;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div class="content">
  49. <div>
  50. <h1>HTTP 505 - HTTP Version Not Supported</h1>
  51. <dl>
  52. <dt>错误说明:HTTP 版本不受支持。</dt>
  53. <dt>原因1:您的 Web 服务器不支持,或拒绝支持客户端(如您的浏览器)在发送给服务器的 HTTP 请求数据流中指定的 HTTP 协议版本</dt>
  54. <dd>解决办法:</dd>
  55. <dd>升级您的 Web 服务器软件。</dd>
  56. <dt>原因2:http请求格式的错误</dt>
  57. <dd>解决办法:</dd>
  58. <dd>对照一下自己的代码,从打印的信息中终于找到问题所在。可能在请求后面多加了一个空格。http协议真是很严格了。</dd>
  59. </dl>
  60. <div>使用手册,视频教程,BUG反馈,官网地址: <a href="https://www.xp.cn" target="_blank">www.xp.cn</a> </div>
  61. </div>
  62. </div>
  63. </body>
  64. </html>