request-uri_too_long.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <HTML>
  2. <head><meta charset="UTF-8">
  3. <TITLE>414 Request-URI Too Long</TITLE>
  4. <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
  5. <style>
  6. @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
  7. body {
  8. font-family: 'Open Sans', sans-serif;
  9. color: #444;
  10. font-weight: 300;
  11. text-align: center;
  12. }
  13. h1 {
  14. font-weight: 300;
  15. font-size: 100px;
  16. }
  17. h1 i {
  18. font-style: normal;
  19. display: block;
  20. font-size: 200px;
  21. color:orangered;
  22. }
  23. a:link {
  24. color: orangered;
  25. text-decoration: none;
  26. }
  27. ADDRESS {
  28. font-style: normal;
  29. }
  30. p {
  31. font-size: 20px;
  32. max-width: 800px;
  33. margin: 10px auto;
  34. }
  35. hr {
  36. margin: 20px 20px;
  37. display: block;
  38. }
  39. @media all and (max-width: 700px){
  40. h1 {
  41. font-size: 36px;
  42. }
  43. h1 i {
  44. font-size: 80px;
  45. }
  46. }
  47. </style>
  48. <meta name="viewport" content="width=device-width, initial-scale=1">
  49. </HEAD>
  50. <BODY>
  51. <H1><i>414</i>Request-URI Too Long</H1>
  52. <p>The Web server is refusing to service the request because the requested URL address is too long.</p>
  53. <p>
  54. If you want to report this error click <a href="mailto:matschinermax@gmail.com">here</a>.
  55. </p>
  56. <HR>
  57. <ADDRESS>
  58. Web Server at linkom.at, Linkomat GmbH, Goldschlagstraße 110/30, AT-1150 Wien
  59. </ADDRESS>
  60. </BODY>
  61. </HTML>
  62. <!--
  63. - Unfortunately, Microsoft has added a clever new
  64. - "feature" to Internet Explorer. If the text of
  65. - an error's message is "too small", specifically
  66. - less than 512 bytes, Internet Explorer returns
  67. - its own error message. You can turn that off,
  68. - but it's pretty tricky to find switch called
  69. - "smart error messages". That means, of course,
  70. - that short error messages are censored by default.
  71. - IIS always returns error messages that are long
  72. - enough to make Internet Explorer happy. The
  73. - workaround is pretty simple: pad the error
  74. - message with a big comment like this to push it
  75. - over the five hundred and twelve bytes minimum.
  76. - Of course, that's exactly what you're reading
  77. - right now.
  78. -->