gpt4 book ai didi

apache - mod_rewrite : rewrite urls to point to the same application

转载 作者:行者123 更新时间:2023-11-28 23:25:43 25 4
gpt4 key购买 nike

我让 tomcat 位于通过 mod_jk 连接的 apache 服务器后面。我现在需要有 2 个 url 指向同一个 tomcat 应用程序。

  1. http://hostname/app/
  2. http://hostname/fancy-url/

这两个 url 都需要指向同一个 tomcat 应用程序,而无需重定向。 tomcat 应用程序托管在同一台服务器上,可通过 http://hostname/real-app 访问。 .我试图用 mod_rewrite 和 ajp://来实现这个但没有成功。任何人都可以帮我吗?谢谢。

最佳答案

       # vi /etc/httpd/conf.d/mod_jk.conf
<IfModule !mod_jk.c>
LoadModule jk_module "/usr/lib64/httpd/modules/mod_jk.so"
</IfModule>

JkWorkersFile "/etc/httpd/conf/workers.properties"
JkLogFile "/var/log/httpd/mod_jk.log"
JkLogLevel info

<VirtualHost server-name:apache-port>//change server-name to your IP & port to your apache port
ServerName localhost
JkMount /manager worker1
JkMount /manager/* worker1

JkMount /app/* worker1
JkMount /fancy-url/* worker1
</VirtualHost>

# service httpd restart

关于apache - mod_rewrite : rewrite urls to point to the same application,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37332857/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com