0

I have just check the thread on adding of

  <customHeaders>
        <add name="X-UA-Compatible" value="IE=EmulateIE9" />
      </customHeaders>

If some one can help me with, on how to adding this server parameter for IE if the server is not IIS or Lamp stack, Rather jetty or tomcat?

4

1 に答える 1

1

jetty では、書き換えハンドラーを使用してヘッダーを追加できます。

http://www.eclipse.org/jetty/documentation/current/jetty-handlers.html#rewrite-handler

または、サーブレットを使用している場合は、サーブレット フィルターを使用できます。これはサーブレット仕様の一部であるため、jetty または tomcat で動作します。

http://docs.oracle.com/javaee/5/api/javax/servlet/Filter.html

于 2013-07-16T12:31:00.013 に答える