DEV Community

Discussion on: Routes not working when react app is build

Collapse
 
matteusbarbosa profile image
Matteus BS

This is an apache-related issue

Make sure your Apache server redirects every request to index.html file. write the following code to .htaccess

Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]

Collapse
 
adan199 profile image
M Adan Sarfraz

i just sign there up to say thank you for your answer
you saved me from my horrible client

Collapse
 
kram3r91 profile image
kram3r91 • Edited

For me works! i don't have any htaccess rules before