AWS + Elastic bean Stalk + React App + Tomcat服务器:除了默认路径,React App路由器路径不起作用

时间:2018-09-12 06:19:40

标签: reactjs amazon-web-services elastic-beanstalk tomcat8

我正在AWS Elastic bean茎Tomcat服务器中遇到特殊问题。我正在弹性bean茎中的tomcat服务器中部署react应用程序。

我可以访问登录页面xxxxxx.elasticbeanstalk.com/。 但是,当我尝试访问xxxxxx.elasticbeanstalk.com/signup时,出现404错误。

const BasicExample = () => (
      <Router forceRefresh={true}>
        <div>
          <Route exact path="/" component={Pages.LoginPage} />
          <Route path="/signup" component={Pages.Signup} />
        </div>
      </Router>

当我将其部署到本地tomcat服务器中时,我可以访问所有URL。它工作正常。本地主机:8080 /,本地主机:8080 /注册。

有人可以帮助我解决此问题吗?

0 个答案:

没有答案