| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <HTML>
- <head><meta charset="UTF-8">
- <TITLE>414 Request-URI Too Long</TITLE>
- <BASE href="/error_docs/"><!--[if lte IE 6]></BASE><![endif]-->
- <style>
- @import url(http://fonts.googleapis.com/css?family=Open+Sans:300);
- body {
- font-family: 'Open Sans', sans-serif;
- color: #444;
- font-weight: 300;
- text-align: center;
- }
- h1 {
- font-weight: 300;
- font-size: 100px;
- }
- h1 i {
- font-style: normal;
- display: block;
- font-size: 200px;
- color:orangered;
- }
- a:link {
- color: orangered;
- text-decoration: none;
- }
- ADDRESS {
- font-style: normal;
- }
- p {
- font-size: 20px;
- max-width: 800px;
- margin: 10px auto;
- }
- hr {
- margin: 20px 20px;
- display: block;
- }
- @media all and (max-width: 700px){
- h1 {
- font-size: 36px;
- }
- h1 i {
- font-size: 80px;
- }
- }
- </style>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- </HEAD>
- <BODY>
- <H1><i>414</i>Request-URI Too Long</H1>
- <p>The Web server is refusing to service the request because the requested URL address is too long.</p>
- <p>
- If you want to report this error click <a href="mailto:matschinermax@gmail.com">here</a>.
- </p>
- <HR>
- <ADDRESS>
- Web Server at linkom.at, Linkomat GmbH, Goldschlagstraße 110/30, AT-1150 Wien
- </ADDRESS>
- </BODY>
- </HTML>
- <!--
- - Unfortunately, Microsoft has added a clever new
- - "feature" to Internet Explorer. If the text of
- - an error's message is "too small", specifically
- - less than 512 bytes, Internet Explorer returns
- - its own error message. You can turn that off,
- - but it's pretty tricky to find switch called
- - "smart error messages". That means, of course,
- - that short error messages are censored by default.
- - IIS always returns error messages that are long
- - enough to make Internet Explorer happy. The
- - workaround is pretty simple: pad the error
- - message with a big comment like this to push it
- - over the five hundred and twelve bytes minimum.
- - Of course, that's exactly what you're reading
- - right now.
- -->
|