我已在eclipse中以Dynamic Web Project
创建了我的网页,并将WebContent folder
上传到server
(WebContent
包含index.html js, imgs and css
)。当我致电myPage.com
时,它仅适用于网址myPage.com/WebContent
。我已将folder WebContent
目录的内容上传到server root
。现在当我拨打myPage.com
时,它会显示空白页面。 mypage.com/index.html
也显示空白页面。
如何上传WebContent
,index.html
使用WebContent
url
来显示{{1}}显示woithout?
答案 0 :(得分:2)
这可以通过以下方式实现:
在根文件夹中使用重定向 - 如果有人请求了该文件夹,它会自动将您发送到另一个文件夹。这可以通过将index.html
放在包含以下内容的根文件夹中来完成:<meta http-equiv="refresh" content="0; url=http://mypage.com/WebContent" />
;
使用Virtual Host - Tomcat 6的描述。