【发布时间】:2025-11-28 04:05:02
【问题描述】:
我有一个在 codeigniter 环境中运行的 nodejs api 应用程序。我试图在不使用 url 中的端口号的情况下访问 nodejs api
目前你只能点击节点api在
http://wrl.xx.com:8010/api
我想通过如下网址访问它:
http://wrl.xx.com/api/
我尝试运行反向代理但没有成功
<VirtualHost *:80>
ServerName wrl.xx.com
ProxyRequests off
<Proxy *>
Order allow,deny
Allow from all
</Proxy>
ProxyPass / http://localhost:8010/
ProxyPassReverse / http://localhost:8010/
ProxyPreserveHost on
</VirtualHost>
【问题讨论】:
标签: javascript php node.js apache codeigniter