Page tree

Versions Compared

Key

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

...

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

Code Block
        <Location /wiki/>
                FilterDeclare filter_string_replace_urls
                    FilterProvider filter_string_replace_urls SUBSTITUTE resp=Content-Type $text/
                    Substitute "s/www.breakitdown.ca/www.myrapham.com/ni"
                    Substitute "s/Break It Down/www.myrapham.com/n"
                    FilterChain filter_string_replace_urls
         </Location>
Tip

This works!

...