mirror of
https://github.com/directus/directus.git
synced 2026-02-05 16:35:00 -05:00
13 lines
284 B
ApacheConf
13 lines
284 B
ApacheConf
<ifModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
|
|
# If file or directory exists behave normally
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
# Otherwise use index.html (you might need to update path)
|
|
RewriteRule ^.*$ /index.html [L,QSA]
|
|
|
|
</ifModule>
|