在httpd.conf中运行的正则表达式在regex101.com测试网站上不起作用

时间:2014-07-05 17:07:33

标签: regex

此正则表达式代码

 ^/0([0-9]?[0-9])
我的httpd.conf文件中的

表示..

it must start with 0
it can be from 1 to 9 
it can be from 1 to 9 and then 1 to 9 again

但根据这个网站..

http://regex101.com/r/aI2hY1/2#pcre

它不是有效的正则表达式...

如果它通过httpd.conf中的这一行正常工作,它怎么能不是有效的正则表达式

WSGIScriptAliasMatch ^/([0-9]?[0-9]) /dir/$1.wsgi

1 个答案:

答案 0 :(得分:0)

你的代码应该是,

\/0([0-9]?[0-9])

只需删除^符号,然后转义正斜杠/

DEMO