Bugzilla – Attachment 189626 Details for
Bug 41167
Rewrite Rules missing in etc/koha-httpd.conf
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 41167: Fix missing rewrite rules in koha-httpd.conf
Bug-41167-Fix-missing-rewrite-rules-in-koha-httpdc.patch (text/plain), 2.73 KB, created by
Marcel de Rooy
on 2025-11-17 09:31:00 UTC
(
hide
)
Description:
Bug 41167: Fix missing rewrite rules in koha-httpd.conf
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2025-11-17 09:31:00 UTC
Size:
2.73 KB
patch
obsolete
>From 9256cc6c62738937906e9e8c5e4b75d1d04b217b Mon Sep 17 00:00:00 2001 >From: Vivek Kumar <vivek.kumar@bestbookbuddies.com> >Date: Mon, 3 Nov 2025 11:54:21 +0530 >Subject: [PATCH] Bug 41167: Fix missing rewrite rules in koha-httpd.conf >Content-Type: text/plain; charset=utf-8 > >This patch adds missing RewriteRules for ERM, Preservation and Acquisition modules in koha-httpd.conf to restore staff client functionality. > >Test plan: >1. Apply patch >2. Restart Apache >3. Access acquisitions and ERM pages >4. Confirm functionality restored > >Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> >Signed-off-by: David Cook <dcook@prosentient.com.au> > >Bug 41167: (follow-up) Correct rewrite rules in koha-httpd.conf > >This follow-up patch fixes issues from the initial patch for Bug 41167: >- Adds missing asterisks (*) in rewrite rule patterns >- Removes erroneous RewriteRules from the OPAC virtualhost >- Ensures all ERM, Preservation, and Acquisition rewrite rules are correctly placed under the intranet virtualhost > >Test plan: >1. Apply patch >2. Restart Apache >3. Access ERM, Preservation, and Acquisitions modules >4. Confirm pages load correctly without 404 or routing errors > >Signed-off-by: Vivek Kumar <vivek.kumar@bestbookbuddies.com> >Signed-off-by: David Cook <dcook@prosentient.com.au> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > etc/koha-httpd.conf | 10 +++++++--- > 1 file changed, 7 insertions(+), 3 deletions(-) > >diff --git a/etc/koha-httpd.conf b/etc/koha-httpd.conf >index f09bfaf91c..1c6609787a 100644 >--- a/etc/koha-httpd.conf >+++ b/etc/koha-httpd.conf >@@ -107,9 +107,6 @@ > RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT] > RewriteRule ^(.*)_[0-9]{2}\.[0-9]{7}\.(js|css)$ $1.$2 [L] > >- RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT] >- RewriteRule ^/cgi-bin/koha/preservation/.*$ /cgi-bin/koha/preservation/home.pl [PT] >- > # REST API configuration > Alias "/api" "__API_CGI_DIR__" > <Directory __API_CGI_DIR__> >@@ -232,6 +229,13 @@ > RewriteRule ^/issn/([^\/]*)/?$ /search?q=issn:$1 [PT] > RewriteRule ^(.*)_[0-9]{2}\.[0-9]{7}\.(js|css)$ $1.$2 [L] > >+ RewriteRule ^/cgi-bin/koha/erm/.*$ /cgi-bin/koha/erm/erm.pl [PT] >+ RewriteCond %{REQUEST_URI} !^/cgi-bin/koha/preservation/.*.pl$ >+ RewriteRule ^/cgi-bin/koha/preservation/.*$ /cgi-bin/koha/preservation/home.pl [PT] >+ RewriteRule ^/cgi-bin/koha/admin/record_sources(.*)?$ /cgi-bin/koha/admin/record_sources.pl$1 [PT] >+ RewriteCond %{QUERY_STRING} booksellerid=(.*) >+ RewriteRule ^/cgi-bin/koha/acqui/supplier.pl$ /cgi-bin/koha/acquisition/vendors/%1? [R] >+ RewriteRule ^/cgi-bin/koha/acquisition/vendors(.*)?$ /cgi-bin/koha/acqui/vendors.pl$1 [PT] > > # REST API configuration > Alias "/api" "__API_CGI_DIR__" >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 41167
:
188883
|
189141
|
189248
|
189249
|
189252
|
189595
| 189626 |
189627
|
189628