diff options
author | David Robillard <d@drobilla.net> | 2011-11-14 05:08:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-11-14 05:08:29 +0000 |
commit | 58597a317441496a61d66bb34d313560ef90246d (patch) | |
tree | f37cd0baa727bc814a4d209cb256e2c1407b1c85 | |
parent | 0a286773059f6c1f1bd3d2001f76b33dc29cee5a (diff) | |
download | lv2-58597a317441496a61d66bb34d313560ef90246d.tar.xz |
Always serve text/turtle files in UTF-8 encoding.
-rw-r--r-- | doc/htaccess.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/htaccess.in b/doc/htaccess.in index 43c3002..7a21951 100644 --- a/doc/htaccess.in +++ b/doc/htaccess.in @@ -1,8 +1,8 @@ # Turn off MultiViews Options -MultiViews -# Ensure *.ttl files are served as appropriate content type -AddType text/turtle .ttl +# Ensure *.ttl files are served as appropriate content type and encoding +AddType 'text/turtle; charset=UTF-8' .ttl # Rewrite engine setup RewriteEngine On |