您想要使用。当路径
中有' API '时,实现访问指定端口的服务。类型与nginx相同:
location /api/ {
proxy_pass http://localhost:8385;
}
在.htaccess
中,您需要使用mod_rewrite以便通过mod_proxy发送请求。下面是Nginx的配置:
RewriteEngine On
RewriteRule ^api/ http://localhost:8385%{REQUEST_URI} [P]
但是,您可能需要访问服务器配置以确保安装了mod_proxy(和相关模块)。
并且,如果您可以访问服务器配置,那么最好在主服务器配置中开始执行此操作。例如:
ProxyPass /api/ http://localhost:8385/api/
ProxyPassReverse /api/ http://localhost:8385/api/