mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-26 06:57:58 +01:00
9 lines
288 B
ApacheConf
9 lines
288 B
ApacheConf
|
<IfModule mod_rewrite.c>
|
||
|
Options -MultiViews
|
||
|
RewriteEngine On
|
||
|
|
||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||
|
RewriteRule ^ index.php [L]
|
||
|
RewriteRule ^(.*\.(?:coffee))$ /asset.php?type=coffee&file=/$1 [L,QSA,NC]
|
||
|
RewriteRule ^(.*\.(?:less))$ /asset.php?type=less&file=/$1 [L,QSA,NC]
|
||
|
</IfModule>
|