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.
我搜索了很多,发现它node.js不起作用apache。
node.js
apache
还有其他选择吗?
这背后的主要思想是server-side在 Apache 上使用 javascript。
server-side
谢谢。
node.js 是一个网络服务器。它侦听端口,接受传入请求并提供响应。Apache 也是一个网络服务器。它侦听端口,接受传入的请求,但根据可用的处理程序,可能会将请求发送到 php、perl 或任何 cgi 以呈现输出。
但是,您可以做的是让 node.js 监听端口 8081 或其他任何端口,并让 Apache 在端口 80 上监听。http(端口 80)上的传入请求可以代理到 node.js 端口。
http