]> git.evergreen-ils.org Git - Evergreen.git/blob - docs/RELEASE_NOTES_NEXT/Client/splash_search_fix.adoc
check in first draft of release notes
[Evergreen.git] / docs / RELEASE_NOTES_NEXT / Client / splash_search_fix.adoc
1 Fix for Staff Splash Page Multi-Word Search
2 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 The addition of the Angular Staff Catalog surfaced a double-encoding issue
4 with redirects in certain Apache versions. This caused searches for multiple
5 words to have %20 in place of spaces, almost certainly resulting in 0 results.
6
7 In order to apply this fix, change the Angular redirects in eg_vhost.conf from
8
9  RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [R=307,L]
10
11 to
12
13  RewriteRule ^/eg2/(.*) https://%{HTTP_HOST}/eg2/en-US/$1 [NE,R=307,L]
14