NGINX-正则表达式-在整个位置搜索非字母数字

前端之家收集整理的这篇文章主要介绍了NGINX-正则表达式-在整个位置搜索非字母数字 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的vhost conf中有以下正则表达式:

  1. location ~* ^/!/[^a-zA-Z0-9] {
  2. return 301 $scheme://$http_host;
  3. }

但它似乎只与第一个字符匹配:

  1. # Redirects to https://shouttag.com correctly
  2. https://shouttag.com/!/!pink
  3. # Does not redirect as expected
  4. https://shouttag.com/!/p!nk

我尝试过的变化:

  1. # Assume that $is unnecessary b/c I don't know what the end of the url may be
  2. location ~* ^/!/[^a-zA-Z0-9]${
  3. # Only seems to work when capturing data via group Syntax ()
  4. location ~* ^/!/[^a-zA-Z0-9]+ {

谢谢.

最佳答案
您可以尝试以下规则:

  1. location ~ ^/!/[a-zA-Z0-9]*[^a-zA-Z0-9].*${
  2. return 301 $scheme://$http_host;
  3. }

猜你在找的Nginx相关文章