2012-04-10 17:22:12 +00:00
|
|
|
# DO NOT CHANGE THIS FILE
|
|
|
|
# If you need to change this file, you are doing something wrong.
|
|
|
|
|
2017-10-12 11:51:53 +02:00
|
|
|
Options +FollowSymlinks +Multiviews
|
2007-04-03 14:10:23 +00:00
|
|
|
|
2017-02-22 12:08:18 +00:00
|
|
|
AddType image/svg+xml .svg
|
2017-02-23 23:02:30 +00:00
|
|
|
<IfModule mod_filter.c>
|
|
|
|
<IfModule mod_deflate.c>
|
2017-04-22 14:09:34 +01:00
|
|
|
AddOutputFilterByType DEFLATE text/css
|
|
|
|
AddOutputFilterByType DEFLATE application/javascript
|
|
|
|
AddOutputFilterByType DEFLATE text/javascript
|
|
|
|
AddOutputFilterByType DEFLATE application/x-javascript
|
2017-02-23 23:02:30 +00:00
|
|
|
AddOutputFilterByType DEFLATE image/svg+xml
|
2017-04-22 14:09:34 +01:00
|
|
|
AddOutputFilterByType DEFLATE text/plain
|
|
|
|
AddOutputFilterByType DEFLATE text/xsd
|
|
|
|
AddOutputFilterByType DEFLATE text/xsl
|
|
|
|
AddOutputFilterByType DEFLATE text/xml
|
|
|
|
AddOutputFilterByType DEFLATE image/x-icon
|
2017-02-23 23:02:30 +00:00
|
|
|
</IfModule>
|
|
|
|
</IfModule>
|
2017-02-22 12:08:18 +00:00
|
|
|
|
2007-04-03 14:10:23 +00:00
|
|
|
RewriteEngine on
|
2011-09-14 13:38:01 +00:00
|
|
|
RewriteBase /
|
2012-04-09 00:38:47 +00:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
2011-09-14 13:38:01 +00:00
|
|
|
RewriteCond %{REQUEST_URI} !\.(js|ico|txt|gif|jpg|png|css|php)
|
2014-10-09 15:44:33 +00:00
|
|
|
RewriteRule ^api/v0(.*)$ api_v0.php/$1 [L]
|
2015-06-25 08:01:05 -04:00
|
|
|
RewriteCond %{REQUEST_URI} !=/server-status
|
2014-07-08 19:26:17 +01:00
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
|
|
RewriteCond %{REQUEST_URI} !\.(js|ico|txt|gif|jpg|png|css|php)
|
2017-07-14 07:38:25 +02:00
|
|
|
RewriteRule ^(.*)$ index.php
|
2011-09-21 09:21:30 +00:00
|
|
|
|
|
|
|
AcceptPathInfo On
|