We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fe9c15 commit 88c4b4eCopy full SHA for 88c4b4e
templates/apps/drupal/drupal.j2
@@ -134,6 +134,11 @@ location / {
134
location ~* ^(?:\/(?:{{ nginx_drupal_language_path_prefixes|join('|') }}))?\/sitemap\.xml$ {
135
try_files $uri @drupal-no-args;
136
}
137
+
138
+ ## Core search support.
139
+ location ~* ^(?:\/(?:{{ nginx_drupal_language_path_prefixes|join('|') }}))?\/search/.+/.+ {
140
+ try_files $uri @drupal-no-args;
141
+ }
142
{% endif %}
143
144
## All static files will be served directly.
@@ -152,7 +157,7 @@ location / {
152
157
153
158
154
159
## Core search support.
155
- location ~* (/[[:alpha:]-]+)?/search/.+/.+ {
160
+ location ~* ^/search/.+/.+ {
156
161
162
163
0 commit comments