1. 程式人生 > >web專案首頁跳轉問題

web專案首頁跳轉問題

專案首頁跳轉方式

web.xml中進行配置,如下

<welcome-file-list>
    <welcome-file>page/index.html</welcome-file>
</welcome-file-list>
1、welcome-file 系統預設是靜態檔案,如果配置的是靜態頁面,比如.html .jsp等,則可以直接訪問。如果是後臺地址則可以有如下兩種方式實現。
1、在下面配置攔截攔截請求,如下
<!-- 首頁配置 -->
	<servlet-mapping>  
        <servlet-name>dispatcher</servlet-name>  
        <url-pattern>/page/index.html</url-pattern>  
    </servlet-mapping>  
ps:例項中 page/index.html 為後臺請求地址非直接進入靜態頁面。

2、先直接跳入靜態頁面,然後在頁面中進行跳轉。例如  location.href = "xxxx.do";