Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个在独立服务器(brit.sales-01)中运行的应用程序。该应用程序部署在 apache tomcat 6 中。每当我想访问该应用程序时,我必须输入整个地址,即http:\brit.sales-01.example.com:8185\application
但是当我键入application.example.com时,我不想这样做,它应该重定向到这个应用程序。
如果您需要我这边的更多信息,请告诉我请帮忙。
问候抗体
将此规则放在您的 application.example.com 服务器上会将所有流量重定向到完整的端口 8185 URL,并在末尾附加任何其他路径。
RewriteCond %{HTTP_HOST} ^application.example.com$ [NC] RewriteRule ^(.*)$ http://brit.sales-01.example.com:8185/application$1 [L]