vote up 0 vote down star

I have loaded a static (no servlets, jsp etc) website into the webapps folder of Tomcat.

I have an index.html file under webapps/ourcompany so when I click the ourcompany link in the tomcat manager I am expecting to be taken to the ourcompany/index.html page. However Tomcat keeps redirecting me to localhost:8080/ourcompany/www.ourcompany.org/index.html

The funny thing is when I first loaded this site, that was the correct URL as most of the content was in a folder called www.ourcompany.org - I moved the content "up a level (in terms of folder structure)" to "clean up" the folder structure and get a more pleasing address. I guess that may have something to do with it.

How can I get the link in the Tomcat manager to take me to localhost:8080/ourcompany/index.html rather than localhost:8080/ourcompany/www.ourcompany.org/index.html

flag

61% accept rate

2 Answers

vote up 1 vote down check

Is there something in the index.html redirecting you to www.ourcompany.org/index.html?

Some piece of javascript, a meta refresh, etc?

link|flag
Good idea, I checked though, unfortunately that's not it – Ankur Apr 21 at 3:16
It seems you might be right. I changed the index.html page to something simple - and that works as expected, so somewhere where I can't find it there probably is a redirect – Ankur Apr 21 at 3:21
vote up 1 vote down

Check the web.xml of your webapp and see what file is mentioned in the welcomelist tag. See if that is wrong or open that file and see if its redirecting to localhost:8080/ourcompany/www.ourcompany.org/index.html url.

link|flag
This is not a war, just a static page, so there is no web.xml – Ankur Apr 21 at 3:21
Then check the index.html to see if it is redirecting to that url. See if there is any META tag or any javascript function. – Bhushan Apr 21 at 3:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.