LP#1892435 - Add Release Note
authorJason Boyer <JBoyer@EquinoxInitiative.org>
Tue, 11 May 2021 14:00:15 +0000 (10:00 -0400)
committerJason Boyer <JBoyer@EquinoxInitiative.org>
Tue, 11 May 2021 14:00:15 +0000 (10:00 -0400)
Signed-off-by: Jason Boyer <JBoyer@EquinoxInitiative.org>

docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc [new file with mode: 0644]

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 (file)
index 0000000..c12294b
--- /dev/null
@@ -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]
+