刘洪青 | 6266f99 | 2017-05-15 21:21:03 +0800 | [diff] [blame^] | 1 | <%--
|
| 2 | Licensed to the Apache Software Foundation (ASF) under one or more
|
| 3 | contributor license agreements. See the NOTICE file distributed with
|
| 4 | this work for additional information regarding copyright ownership.
|
| 5 | The ASF licenses this file to You under the Apache License, Version 2.0
|
| 6 | (the "License"); you may not use this file except in compliance with
|
| 7 | the License. You may obtain a copy of the License at
|
| 8 |
|
| 9 | http://www.apache.org/licenses/LICENSE-2.0
|
| 10 |
|
| 11 | Unless required by applicable law or agreed to in writing, software
|
| 12 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 13 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 | See the License for the specific language governing permissions and
|
| 15 | limitations under the License.
|
| 16 | --%>
|
| 17 | <%@ page import="org.apache.catalina.util.RequestUtil" session="false"
|
| 18 | trimDirectiveWhitespaces="true" %>
|
| 19 | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
| 20 | <html>
|
| 21 | <head>
|
| 22 | <title>404 Not found</title>
|
| 23 | <style type="text/css">
|
| 24 | <!--
|
| 25 | BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;font-size:12px;}
|
| 26 | H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;}
|
| 27 | PRE, TT {border: 1px dotted #525D76}
|
| 28 | A {color : black;}A.name {color : black;}
|
| 29 | -->
|
| 30 | </style>
|
| 31 | </head>
|
| 32 | <body>
|
| 33 | <h1>404 Not found</h1>
|
| 34 | <p>
|
| 35 | The page you tried to access
|
| 36 | (<%=RequestUtil.filter((String) request.getAttribute(
|
| 37 | "javax.servlet.error.request_uri"))%>)
|
| 38 | does not exist.
|
| 39 | </p>
|
| 40 | <p>
|
| 41 | The Host Manager application has been re-structured for Tomcat 7 onwards and
|
| 42 | some URLs have changed. All URLs used to access the Manager application
|
| 43 | should now start with one of the following options:
|
| 44 | </p>
|
| 45 | <ul>
|
| 46 | <li><%=request.getContextPath()%>/html for the HTML GUI</li>
|
| 47 | <li><%=request.getContextPath()%>/text for the text interface</li>
|
| 48 | </ul>
|
| 49 | <p>
|
| 50 | Note that the URL for the text interface has changed from
|
| 51 | "<%=request.getContextPath()%>" to
|
| 52 | "<%=request.getContextPath()%>/text".
|
| 53 | </p>
|
| 54 | <p>
|
| 55 | You probably need to adjust the URL you are using to access the Host Manager
|
| 56 | application. However, there is always a chance you have found a bug in the
|
| 57 | Host Manager application. If you are sure you have found a bug, and that the
|
| 58 | bug has not already been reported, please report it to the Apache Tomcat
|
| 59 | team.
|
| 60 | </p>
|
| 61 | </body>
|
| 62 | </html>
|