请有人帮我写一个满足以下要求的正则表达式。
用 apache httpd.conf 编写的模式
重定向匹配 ^/$ https://demo.test.com/xyz/test/DemoWelcomePage
我已经重写了一个匹配的模式,但它在 perl 中失败了。
$FS_URL="demo.test.com"; 使用 grep 搜索模式 - "RedirectMatch\s\^/\$\s(https\|http)\://($FS_URL).*"
你能纠正我的正则表达式条件吗?
谢谢。