From 9da0396006564591cd1cfcf8f955f05dd9ca18eb Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Fri, 2 Aug 2013 13:54:12 -0700 Subject: [PATCH] apache.conf: remove MultiViews from sample Configuration The MultiViews option should not actually be set unless there truly are multiple language versions of a page. Otherwise unnecessary content negotiation will take place. In addition meaningless errors may be spewed into the error log. Instead remove MultiViews from the Options configuration and add a comment about adding it only if pages are truly offered in more than a single language. --- apache.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apache.conf b/apache.conf index 2f34278..9e70102 100644 --- a/apache.conf +++ b/apache.conf @@ -14,7 +14,9 @@ DocumentRoot /home/repo/WWW - Options Indexes FollowSymLinks MultiViews ExecCGI + # Add MultiViews only if pages are truly + # offered in more than a single language + Options Indexes FollowSymLinks ExecCGI AllowOverride All Order allow,deny Allow from all -- 2.11.4.GIT