can 27t bookmark react router

Solutions on MaxInterview for can 27t bookmark react router by the best coders in the world

showing results for - "can 27t bookmark react router"
Nick
22 Nov 2018
1// Add the following to .htaccess file in the public folder
2// NOTE: This is for Apache servers!
3
4<IfModule mod_rewrite.c>
5  RewriteEngine On
6  RewriteBase /
7  RewriteRule ^index\.html$ - [L]
8  RewriteCond %{REQUEST_FILENAME} !-f
9  RewriteCond %{REQUEST_FILENAME} !-d
10  RewriteCond %{REQUEST_FILENAME} !-l
11  RewriteRule . /index.html [L]
12</IfModule>