Last active
January 15, 2026 13:57
-
-
Save hamdymohamedak/da0c1fb0ab182cc20c6b24fbb4e8cc65 to your computer and use it in GitHub Desktop.
httacess for react projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Options -MultiViews | |
| RewriteEngine On | |
| # Don't rewrite if the file exists | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| # Don't rewrite if the directory exists | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| # Rewrite everything else to index.html | |
| RewriteRule ^ index.html [QSA,L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment