JkMount 忽略别名
我正在使用 Apache、Tomcat 和 Railo ColdFusion 设置一个新服务器。我正在使用 mod_jk 将 Apache 连接到 Tomcat,并在 java 服务器上使用 CMS 系统。由于 CMS 的工作方式,我希望将除特定文件目录之外的每个请求转发到 Tomcat 服务器。
因此,我在站点配置中设置了 JkMount,如下所示。
JkMount /* ajp13w
这工作得很好,但我现在想为实际上是别名的目录添加忽略。我尝试添加这一行:
Alias /store /websites/eac/www/store
JkMount !/store ajp13w
但这行不通。有没有办法使用 mod_jk 将除 /store 之外的所有文件转发到 Tomcat 服务器?
I am setting up a new server using Apache, Tomcat and Railo ColdFusion. I am using mod_jk to connect Apache to Tomcat, and am using a CMS system on the java server. I want to forward every request to the Tomcat server except for a specific directory of files, because of the way the CMS works.
So I setup my JkMount in my site config like the following
JkMount /* ajp13w
This works just fine, but I want to now add an ignore for a directory which is actually an Alias. I tried add this line:
Alias /store /websites/eac/www/store
JkMount !/store ajp13w
But that won't work. Is there a way to forward all files, except /store to the Tomcat server with mod_jk?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
Try: