Add htaccess
[odp.git] / .htaccess
blob3c497b7f38781c79d3a8be019ba3e74d3a920957
2   #utf8 everywhere
3   AddDefaultCharset UTF-8
5   #some special file types handling
6   AddType text/xml .rdf
7   AddType text/xml .rss
8   AddType text/xml .atom
10   #compress as gz js and css files
11   <IfModule mod_deflate.c>
12         <FilesMatch "\.(js|css)$">
13           SetOutputFilter DEFLATE
14         </FilesMatch>
15   </IfModule>
17   #rewrite
18   RewriteEngine off