我想放置一个反向代理(Apache httpd)以便为我的reactJS应用程序服务。
这是我的httpd配置
ProxyPass /test/ http://example.com
ProxyPassReverse /test/ http://example.com
但是,在React应用中,我收到此警告,并且我的应用无法正常工作
Warning: [react-router] Location "/test/" did not match any routes
我认为产生此错误是因为代理重定向请求时,他会将请求发送到测试页。
那么我该如何在代理端解决此问题呢?
先谢谢您,