Skip to content

Instantly share code, notes, and snippets.

View thisisrexa's full-sized avatar

Rexa thisisrexa

View GitHub Profile
@thisisrexa
thisisrexa / .htaccess
Last active November 20, 2024 10:26 — forked from alexsasharegan/.htaccess
Apache Config for React Router in a subfolder
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ sub-folder/index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /sub-folder/index.html [L]