Vorbereitung:
mod_sed (/usr/lib/apache2/modules/mod_sed.so) muss installiert sein. Es ist aber "experimentell"
aktivieren mit:
sudo a2enmod sed && systemctl restart apache2;
In meiner Installation klappte das folgende nur in der Serverkonfiguration, nicht aber, wie in der Dokumentation behauptet, in der .htaccess:
<Directory /var/www/home/Tests/OutputSed/ >
AddOutputFilter Sed html
OutputSed "s/DATUM/2020-02-13/g"
</Directory>
Test-Datei:
<html>
<head>
<title>Datum: DATUM</title>
</head>
<body>
<h1>Datum: DATUM</h1>
</body>
</html>
Output:
<html>
<head>
<title>Datum: 2020-02-13</title>
</head>
<body>
<h1>Datum: 2020-02-13</h1>
</body>
</html>