Created
June 12, 2025 14:29
-
-
Save cyb3rsalih/d2fbc38feeee2266363e9c0eee219517 to your computer and use it in GitHub Desktop.
In Vite Apps Links doesn't work when visited. With this we are fixing the problem
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
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^index\.html$ - [L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule . /index.html [L] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment