正则表达式 – 如何在重写中匹配www和非www?

前端之家收集整理的这篇文章主要介绍了正则表达式 – 如何在重写中匹配www和非www?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个重写地图,其中包含要重定向的域列表.目前我必须在重写地图中列出www.foo.com和foo.com.我想知道是否有办法在同一行中对www和非www进行重写检查.
  1. # Rewrite Map
  2. foo.com file.PHP
  3. www.foo.com file.PHP
  4.  
  5. # modrewrite
  6. RewriteCond ${domainmappings:%{HTTP_HOST}} ^(.+)$[NC]
  7. RewriteCond %1 !^NOTFOUND$
  8. RewriteRule ^.*$www.domain.com/%1 [L,R=301]

我尝试过像(www.)%{HTTP_HOST}或^(www.)%{HTTP_HOST}之类的东西,但没有运气.

这应该这样做:
  1. RewriteCond %{HTTP_HOST} ^(www\.)?(.+)
  2. RewriteCond ${domainmappings:%2} ^(.+)$[NC]
  3. RewriteRule ^ /%1 [L,R=301]

第一个RewriteCond将删除可选的www.字首.然后将余数用作第二个RewriteCond中重写映射的参数.

如果未找到匹配项,则纯文本文件重写映射将返回空字符串:

If the key is found,the map-function construct is substituted by SubstValue. If the key is not found then it is substituted by DefaultValue or by the empty string if no DefaultValue was specified.

因此,如果满足第二个条件(注意^(.)$),则找到匹配,%1将包含SubstValue(在本例中为file.PHP).

猜你在找的正则表达式相关文章