我正在尝试重写数百个 URL,除了一种情况外,我已经非常接近了。
有些 URL 看起来像这样:
/city/?sl_city=CityName&directory_nonce=45ad967e02
但有些+
在查询变量中以作为单词分隔符sl_city
。这些需要更改为-
/city/?sl_city=Some+City&directory_nonce=45ad967e02
这两个 URL 的最终结果应该是这样的:
/locations/cityname
/locations/some-city
我的基本重写规则是这样的:
location ~* ^/city/(.+)? {
if ($args ~* "sl_city=(.+)&directory_nonce=(.+)") {
set $city $1;
set $args '';
rewrite ^.*$ /locations/$city permanent;
}
}
但是我的第二个 URL 出现 404 错误(返回为/locations/Some+City
),但locations/Some-City
可以解析。目前我并不担心这些 URL 的大小写问题。
基本上,我想$city
在它进行最终永久重写之前进行检查,并将+
发现的任何内容更改为-
。
我见过的所有示例都涉及安装另一个模块,但我认为我做不到。而且到目前为止,我的尝试都没有成功。
编辑
这是我安装的模块。想弄清楚它是否ngx_http_substitutions_filter_module
能满足我的需要,但不知道。
nginx version: nginx/1.8.0
built with OpenSSL 1.0.1f 6 Jan 2014
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fPIE -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_auth_request_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_spdy_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module --add-module=/build/buildd/nginx-1.8.0/debian/modules/nginx-auth-pam --add-module=/build/buildd/nginx-1.8.0/debian/modules/nginx-dav-ext-module --add-module=/build/buildd/nginx-1.8.0/debian/modules/nginx-echo --add-module=/build/buildd/nginx-1.8.0/debian/modules/nginx-upstream-fair --add-module=/build/buildd/nginx-1.8.0/debian/modules/ngx_http_substitutions_filter_module
答案1
这会将加号替换为连字符:
location ^~ /city/ {
# For the single word case, just copy the city name
set $city $arg_sl_city;
# If the city is two words, convert + to "-"
if ($arg_sl_city ~* "(\w+)[-+](\w+)") {
set $city "$1-$2";
}
set $args '';
rewrite ^.*$ /locations/$city permanent;
}
然而,将城市名称小写化需要像嵌入式 perl 这样的模块。也就是说,除非已知所有可能的城市名称,并且列表大小合理。然后您可以使用map
指令将大写版本静态映射到小写版本。