我已经创建了我的React App,npm run build...将我的文件放在filezilla中,但是问题是我遇到了这个错误Not Found
The requested URL /main was not found on this server.当我转到https://clickswinner.alwaysdata.net以外的页面时你有什么建议?
2 回答
慕斯王
TA贡献1864条经验 获得超2个赞
尝试创建.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>
添加回答
举报
0/150
提交
取消