Nginx和ReactJS - 刷新页面给出了404

时间:2017-08-08 18:49:18

标签: reactjs nginx

在我的索引页面(url = ../web/)中,如果用户未登录,我会将用户重定向到登录页面(url = ../Login)。这样可以正常工作。但是,如果我刷新页面,我会得到一个404.

Chrome Developer工具中的“来源”下未列出其他任何文件。

我当时认为这可能与Nginx无法正确加载文件有关。我的一些.conf文件位于

之下
location / {
    root  /home/vagrant/site/mednax/ProfessionalApp;
    try_files $uri /index.html $uri/ /index.php$is_args$args;
     autoindex off;
    index  index.html index.htm index.php;
  }
location ~ \.php$ {

0 个答案:

没有答案