mirror of
https://github.com/voc/streaming-website
synced 2024-11-14 00:17:18 +00:00
d8de701e69
- development hack
12 lines
290 B
ApacheConf
12 lines
290 B
ApacheConf
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]
|