Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Looking around I found the substitue directive.

sudo a2enmod substitute

Code Block
langhtml
<Location /wiki/>
AddOutputFilterByType SUBSTITUTE text/html
Substitute s/www.breakitdown.ca/www.supernaturalz.com/ni
</Location>

...

Have not measured the performance hit yet.

substitute with mod_filter

Just noticed that AddOutputFilterByType is deprecated and it is recommended to use mod_filter. So enable it using a2enmod filter.

...