aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-14 05:08:29 +0000
committerDavid Robillard <d@drobilla.net>2011-11-14 05:08:29 +0000
commit58597a317441496a61d66bb34d313560ef90246d (patch)
treef37cd0baa727bc814a4d209cb256e2c1407b1c85
parent0a286773059f6c1f1bd3d2001f76b33dc29cee5a (diff)
downloadlv2-58597a317441496a61d66bb34d313560ef90246d.tar.xz
Always serve text/turtle files in UTF-8 encoding.
-rw-r--r--doc/htaccess.in4
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