Skip to content

Instantly share code, notes, and snippets.

@olygood
Last active January 11, 2021 16:30
Show Gist options
  • Save olygood/2752fa3a4e9adfeaedec8064c3ab6da0 to your computer and use it in GitHub Desktop.
Save olygood/2752fa3a4e9adfeaedec8064c3ab6da0 to your computer and use it in GitHub Desktop.
htaccess pour react sur le server
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /subdirectory
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
</IfModule>
// option----------------------------
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.html [QSA,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment