2012-09-27 98 views
1

我的index.jsp位於MyApp/web/views。歡迎頁面在瀏覽器中不顯示完整地址

在我的web.xml我已經設置

<welcome-file-list> 
    <welcome-file>web/views/index.jsp</welcome-file> 
</welcome-file-list> 

頁面呈現的罰款,但在瀏覽器地址欄中顯示內容:本地主機:8080/MyApp的

我希望它顯示完整的地址,如localhost:8080/MyApp/web/views/index.jsp。 任何想法如何使這個顯示?

回答

0

如果您想要更改地址欄,則必須通知瀏覽器執行附加請求(重定向)。添加HTML頁面MyApp/index.html包含:

<html> 
    <head> 
     <meta http-equiv="refresh" content="0; URL=web/views/index.jsp" /> 
    </head> 
</html> 

利用這一點,你就不會需要你<welcome-file-list>條目。