Hide Default Homepage for Tomcat

To hide default homepage for Tomcat we could redirect default homepage to other page
 
# Make a backup of the old homepage
cd /CATALINA_HOME/webapps/ROOT
mv index.html index.html.bak
# create a new index.html file and put the following contents in index.html file
touch index.html
vim index.html
and contents are
 
<head>
<meta http-equiv="refresh" content="0;URL=your_new_default_homepage">
</head>
<body>
</body>
</html>

No comments:

Post a Comment

Datatable static image not found on the server

When you use ```datatables.min.css``` and ```datatables.min.js``` locally, instead of datatables CDN, you may have encountered that ```sort...