27c6ab764c
koha-common will be suitable for hosts with multiple Koha instances, or those that otherwise need to do thing differently from the main koha package. Signed-off-by: Galen Charlton <gmcharlt@gmail.com>
19 lines
862 B
Text
19 lines
862 B
Text
# Apache configuration settings that are shared for every Koha instance.
|
|
# This file contains settings for the OPAC site.
|
|
#
|
|
# This file should be included from an instance's
|
|
# /etc/apache2/site-available file, from within the VirtualHost section
|
|
# for OPAC.
|
|
|
|
DocumentRoot /usr/share/koha/opac/htdocs
|
|
|
|
ScriptAlias /cgi-bin/koha/ "/usr/share/koha/opac/cgi-bin/opac/"
|
|
ScriptAlias /index.html "/usr/share/koha/opac/cgi-bin/opac/opac-main.pl"
|
|
ScriptAlias /search "/usr/share/koha/opac/cgi-bin/opac/opac-search.pl"
|
|
ScriptAlias /opac-search.pl "/usr/share/koha/opac/cgi-bin/opac/opac-search.pl"
|
|
|
|
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]
|
|
RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT]
|