Deep routing in ReactJS app
Direct access to a deep routing in a ReactJS app whiout get the 404 not found page.
.htaccess file
Redirect all the http direct call to the index file.
RewriteEngine On RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -f [OR] RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} -d RewriteRule ^ - [L] RewriteRule ^ /index.html [L]