官網上由於使用了<!--#include file="include/header.html"-->標籤,在把代碼複製到本地的狀況下出現網頁不能長正常顯示的狀況,多方查證才發現是由於正常狀況下不能正常解釋include,由於打開可能會對性能形成影響,下邊對其打開分爲tomcat和IIS進行分別介紹:html
1.tomcatweb
(1)找到tomcat配置文件位置,找到context.xml與web.xml,並進行備份;apache
(2)打開context.xml文件,在Context父標籤中添加屬性privileged="true",具體以下:tomcat
<Context privileged="true"> <!-- Default set of monitored resources --> <WatchedResource>WEB-INF/web.xml</WatchedResource> <!-- Uncomment this to disable session persistence across Tomcat restarts --> <!-- <Manager pathname="" /> --> <!-- Uncomment this to enable Comet connection tacking (provides events on session expiration as well as webapp lifecycle) --> <!-- <Valve className="org.apache.catalina.valves.CometConnectionManagerValve" /> --> </Context>
(3)保存文件;服務器
(4)打開web.xml文件;session
(5)找到Built In Servlet Mappings處,將servlet-mapping處關於html部分解除註釋,以下圖所示:app
(6)找到servlet配置部分,找到以下圖代碼部分,解除註釋;webapp
(7)保存文件,重啓tomcat服務器便可;ide
2.IIS性能
(1)打開IIS;
(2)點擊須要設置的網站;
(3)選擇「處理應用程序映射「;
(4)點擊添加模塊映射,填寫內容以下圖所示;
(5)重啓II