tags:

views:

32

answers:

1

Hi,

Where can we place static html files in our war file? For example, a default project has this:

war/projectname.html

I'd like to just make a few static folders with static pages that are like:

war/projectname.html
war/signup/index.html
war/about/index.html

so that my users can just hit those static pages like:

www.myproject.com/signup
www.myproject.com/about

where would I put folders like that in our project tree? I tried putting them under war/, just beside projectname.html (like above), but they don't seem to be available there, I just get a 404 error,

Thanks

A: 

This works fine as pointed out by Igor Klimer, I had a Filter enabled which was messing up the routing.