Files
directus/public/.htaccess
rijkvanzanten 8573e61015 Initial commit
2020-02-05 14:02:32 -05:00

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>