blob: 270be925262a0f91c4f776d0e439f5cdfae501ae (
plain)
1
2
3
4
5
6
7
|
RewriteEngine on
# everything that does not contain asssets|media|fonts
RewriteCond %{REQUEST_URI} !^(.*)/(assets|media|fonts)/ [OR]
# or that isn't a file
RewriteCond %{REQUEST_FILENAME} !-f
# is redirect to index
RewriteRule . index.php [L]
|