method_not_allowed.html 2.1 KB

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