From a511478fd7ac15868ddc127e0ac4516c339b9817 Mon Sep 17 00:00:00 2001 From: Jason Boyer Date: Tue, 11 May 2021 10:00:15 -0400 Subject: [PATCH] LP#1892435 - Add Release Note Signed-off-by: Jason Boyer --- docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc diff --git a/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc new file mode 100644 index 0000000000..c12294b110 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc @@ -0,0 +1,14 @@ +Fix for Staff Splash Page Multi-Word Search +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +The addition of the Angular Staff Catalog surfaced a double-encoding issue +with redirects in certain Apache versions. This caused searches for multiple +words to have %20 in place of spaces, almost certainly resulting in 0 results. + +In order to apply this fix, change the Angular redirects in eg_vhost.conf from + + RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [R=307,L] + +to + + RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L] + -- 2.11.0