我正在运行 isso 应用程序localhost:63837
,我想代理来自的请求https://www.domain.com/isso
这些是我的方法:
RewriteRule https://www.domain.com/isso/(.*)$ http://127.0.0.1:63837/$1 [P]
RewriteRule /isso/(.*)$ http://127.0.0.1:63837/$1 [P]
RewriteRule /isso(.*)$ http://127.0.0.1:63837/$1 [P]
通常我会调整httpd-vhost.conf
,但在这种情况下,我不能在我的主机(超级空间)上这样做。
<Location "/isso">
ProxyPass "http://127.0.0.1:63837"
ProxyPassReverse "http://127.0.0.1:63837"
</Location>
另外,我不喜欢为此使用子域。