From ce742998b26908a9407f77a0f4ed5dbb9da9f273 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Fri, 19 Apr 2013 15:58:39 +0100 Subject: [PATCH] Fix .htaccess when used with MultiViews mod_rewrite + MultiViews don't play nice when the URL you want to redirect is the same as a filename in the current folder (which applies for the 'list' and 'search' URLs). The net result is that the first page of each works, but subsequent pagination fails. Disabling MultiViews solves this problem. --- www/.htaccess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/www/.htaccess b/www/.htaccess index 60419bb..b853d35 100644 --- a/www/.htaccess +++ b/www/.htaccess @@ -1,3 +1,6 @@ +# http://serverfault.com/questions/57243/apache-mod-rewrite-fails-when-file-by-same-name-exists +Options -MultiViews + RewriteEngine On RewriteBase / #RewriteCond %{REQUEST_FILENAME} -f -- 2.30.2