gpt4 book ai didi

apache - 使用 Apache 反向代理时 React-router url 不匹配

转载 作者:行者123 更新时间:2023-12-03 13:27:59 25 4
gpt4 key购买 nike

我正在尝试在 Apache 中设置反向代理来提供 React/Redux/webpack 包。我有一个 Express 服务器文件,为我的静态文件和 index.html 提供服务,如下所示:

const express = require('express');
const path = require('path');

const app = express();
const port = process.env.PORT || 3000;

app.use(express.static('./dist'));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'dist', 'index.html'));
});

app.listen(port, () => {
console.log(`Server running on port ${port}`);
});

我的 apache 配置如下所示:

<VirtualHost *:80>
ProxyRequests off
ProxyPass "/foo/" "http://localhost:8777/"
ProxyPassReverse "/foo/" "http://localhost:8777/"
</VirtualHost>

现在,当导航到 example.com/foo 时,我的 index.html 和 webpack 包已正确提供,但 React 路由器会抛出错误,指出 /foo/ 与任何路由不匹配。显然,这是因为 /foo 是该应用程序的代理位置,而 React 路由器不会(也不应该)考虑生产中使用的代理路径。

如何设置 Apache,以便当请求发送到 localhost:8777 时,Apache 不会传递 /foo 路径?换句话说,如何设置 proxypass 以便将对 example.com/foo/bar 的请求转换为对服务器上的 localhost:8777/bar 的请求,然后返回给客户端,就好像它来自 example.com/foo/bar?

最佳答案

我的团队也遇到了类似的问题,他们解决这个问题的方法是使用 RewriteRule 和强制重定向 [R],然后让 Apache Proxy pass 捕获它。所以也许你可以尝试一下:


<VirtualHost *:80>
ProxyRequests off
RewriteRule ^/foo/bar/& /bar/ [R]
ProxyPass "/bar/" "http://localhost:8777/"
ProxyPassReverse "/bar/" "http://localhost:8777/"
</VirtualHost>

我不是 Apache 配置方面的专家,因此您可能需要自己尝试一下 RewriteRule ( https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#rewriterule )。但是,我相信上述内容可能只是您问题的一部分的答案:

how do you setup the proxypass so that a request to example.com/foo/bar is transformed to a request to localhost:8777/bar on the server

但我对此不太确定,抱歉:

then returned to the client as if it came from example.com/foo/bar?

希望其中一些能有所帮助。

关于apache - 使用 Apache 反向代理时 React-router url 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37421774/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com