Home > Article > Web Front-end > Where is the default access page of tomcat?
Tomcat’s default access page is located in the webapps/ROOT directory and can be accessed by entering http://localhost:8080 in the browser (replaced with the Tomcat port number). The default page displays the Tomcat logo, version information, and links, but can also be customized by placing custom HTML files in the webapps/ROOT directory.
Tomcat default access page location
Tomcat is a free and open source web server developed by the Apache Software Foundation. Its default access page is located in the webapps/ROOT directory.
How to access Tomcat default access page:
Enter the following URL in your web browser:
<code>http://localhost:8080</code>
8080
with the port number that Tomcat is listening on (if it has changed). Default access page content:
Tomcat’s default access page is a simple HTML page that displays the following content:
Customize the default access page:
You You can customize the default access page by placing a custom HTML page in the webapps/ROOT directory. Tomcat will automatically load this page as the default access page.
Note:
If multiple HTML files exist in the webapps/ROOT directory, Tomcat will load the first named file (letterwise order).
The above is the detailed content of Where is the default access page of tomcat?. For more information, please follow other related articles on the PHP Chinese website!