我的React App放在网络上时出现问题

时间:2019-04-25 18:20:26

标签: javascript reactjs production filezilla

我已经创建了我的React App setsebool httpd_can_network_connect on -P ...将我的文件放入filezilla, 但是问题是我有这个错误

npm run build

当我转到https://clickswinner.alwaysdata.net以外的页面时

您有什么建议?

2 个答案:

答案 0 :(得分:1)

Google是您的朋友

此处是有关如何为Filezilla修复404问题的文章 https://medium.com/@christine_tran/deploying-a-simple-react-application-using-ftp-filezilla-dreamhost-1e5ff6b8abd6

答案 1 :(得分:0)

尝试创建.htaccess文件并将其放在服务器的根目录

<IfModule mod_rewrite.c>
  RewriteEngine On
  RewriteBase /
  RewriteRule ^index\.html$ - [L]
  RewriteCond %{REQUEST_FILENAME} !-f
  RewriteCond %{REQUEST_FILENAME} !-d
  RewriteRule . index.html [L]
</IfModule>