我有一个使用react-router 2.0.0的反应应用。设置反应路由器路由,以便..
反应App - localhost:3000 /
<Router history={browserHistory}>
<Route name="homepage" path="/" component={App}>
<IndexRoute component={Homepage} />
<Route name="cat" path="cat/:catId" component={Catpage} />
</Route>
</Router>
目前我已配置nginx,以便'/'映射到此应用。
location / {
root /home/ubuntu/projects/app; }
现在我想更改配置,以便从2个不同的基本路径提供此应用程序。即 abc.net/A将提供app AND abc.net/B/C也将提供相同的应用程序
如何在不修改反应路由器代码的情况下配置nginx服务器来执行此操作?它有可能吗?