Apache 中的多行正则表达式替换

Apache 中的多行正则表达式替换

我需要在 apache2 中执行多行替换,据我所知,mod-substitute 只能进行单行匹配。

我需要能够做这样的事情:

代替

<script>
foo = x;
bar = y;
alert(x + y);
</script>

<script>
alert("I'm someone else!");
</script>

有没有办法用 apache 来做到这一点?

相关内容