This content has been marked as final. 
    
Show                 1 reply
    
- 
        1. Re: Redirect JBoss root page to a different URLf_marchioni Sep 29, 2009 4:48 AM (in response to dietice)you have JBoss running on port 80 ? maybe you mean you have Apache Web Server fronting JBoss AS ? If you have such a configuration you could use mod rewrite for example. 
 If you are running jBoss standalone you could add an index.jsp page containing something like that.
 <% response.sendRedirect("/abc/def.html "); %>
 Hope it helps.
 
    