bryoz / reactphoto

A react photo portfolio
1 stars 1 forks source link

[Bug] 404 when refreshing or directly hitting sub-page #36

Closed bryoz closed 4 years ago

bryoz commented 4 years ago

React-router is client-side routing library - routing is only possible via the index file.

Is it possible proxy all received requests using: https://www.npmjs.com/package/connect-history-api-fallback or similar?

bryoz commented 4 years ago

Updated .htaccess (server specific) with:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>