aboutsummaryrefslogtreecommitdiff
path: root/.htaccess
blob: c59989c429cfcaf1dfe3e39bf2f6d2668071da00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
RewriteEngine On

# Never rewrite CSS-File-Path
#  - development hack
RewriteRule ^assets/css/main.css$ - [L]

# Deliver literal files as-is
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

RewriteRule (.*) index.php?route=$1 [L]