通常,这是启用mod_jk模块的方式,而不是仅对一个会话(一个网页)或应用程序等启用。

<VirtualHost *:*>
  #Enable for servlets anywhere
  JkMount /* ajp13
</VirtualHost>


对于一个特定的URL,我想首先使用mod_rewrite模块(不禁用JkMount)...
怎么样?

//I need to execute this first or avoid JKMount only this moment!!!
<IfModule mod_rewrite.c>
  RewriteEngine On
  // no matter what the code does
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME}FileOne.jsp -f
  RewriteCond %{REQUEST_FILENAME} -d
  #Change URL like new URL Request
  RewriteRule ^ %{REQUEST_URI}FileOne.jsp [L,P]
</IfModule>

最佳答案

我的印象是jkmount对于mod_rewrite动作完全不了解,因此我改用Location和“ SetHandler jakarta-servlet”。也许您可以有一个位置来逃避Tomcat,然后再跟一个“”?

07-28 00:08