@@ -, +, @@ koha-httpd.conf *) make *) make install (or make upgrade) *) Copy or symlink etc/koha-httpd.conf to your Apache vhost directory (and enable if you're on a Debian based system) *) Restart Apache --- etc/koha-httpd.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) --- a/etc/koha-httpd.conf +++ a/etc/koha-httpd.conf @@ -105,7 +105,8 @@ #RewriteLog __LOG_DIR__/koha-opac-rewrite.log #RewriteLogLevel 1 - RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*) + #The following two directives are unnecessary to proper Koha functioning. + #RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*) #RewriteRule (.+) $1?%1%2 [N,R,NE] RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/opac-detail\.pl?bib=$1 [PT] RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT] @@ -221,7 +222,8 @@ #RewriteLog __LOG_DIR__/koha-intranet-rewrite.log #RewriteLogLevel 1 - RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*) + #The following two directives are unnecessary to proper Koha functioning. + #RewriteCond %{QUERY_STRING} (.*?)(?:[A-Za-z0-9_-]+)=&(.*) #RewriteRule (.+) $1?%1%2 [N,R,NE] RewriteRule ^/bib/([^\/]*)/?$ /cgi-bin/koha/detail\.pl?bib=$1 [PT] RewriteRule ^/isbn/([^\/]*)/?$ /search?q=isbn:$1 [PT] --