I would like to automatically redirect requests for http://example.com to http://example.com/SomePage
I am able to do that with Apache with the following rule:
RewriteRule ^/$ /SomePage [R]
However, some of my servers do not run on top of Apache, just Tomcat. How do I implement the equivalent in web.xml? SomePage is a struts2 action.