AddDefaultCharset utf-8

<IfModule mod_mime.c>
  AddOutputFilter DEFLATE .wiki .wacko .txt
  # change the following line accordingly if your post sources are not encoded in UTF-8:
  AddType 'text/plain; charset=utf-8' .wiki .wacko .txt
</IfModule>

<IfModule mod_rewrite.c>
  RewriteEngine On

  RewriteRule ^/?([=@].+)$ _blog/by-filter.php?filter=$1 [L,QSA]
  RewriteRule ^/?$ _blog/index.php [L,QSA]

  RewriteCond %{REQUEST_URI} !-f
  RewriteCond %{REQUEST_URI} !-d
  RewriteRule ^/?([^_=@][^\.]*)$ _blog/by-title.php?title=$1 [L,QSA]
</IfModule>
