Reaccionar actualización 404 Error
#paste this in nginx conf file
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.html break;
}
}
Tender Tiger
#paste this in nginx conf file
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.html break;
}
}