1
我需要在httpd.conf中進行多行替換。我曾嘗試使用mod_substitue並且\n
似乎不適用於它。mod-substitute apache中的多行代碼
例如,更換:
<head>
有:
<head>
<script>
//about 20 lines of scripts
</script>
有沒有辦法在Apache的2.4做到這一點?
我需要在httpd.conf中進行多行替換。我曾嘗試使用mod_substitue並且\n
似乎不適用於它。mod-substitute apache中的多行代碼
例如,更換:
<head>
有:
<head>
<script>
//about 20 lines of scripts
</script>
有沒有辦法在Apache的2.4做到這一點?
可以使用反斜槓「\」作爲 的最後一個字符,表示該指令繼續到下一行。必須有 不是其他字符或反斜槓和 行之間的空格。 *
Substitute "s|<head>|<head>\
Line 1\
Line 2\
...\|ni"