There is an interesting module for apache which does automatic search and replacement operations using regular expressions. For information about this module documented in apache website
NOTE: This module is only available in Apache 2.2.7 and later
The mod_substitute.so does not come preinstalled under modules so you have to copy the source of mod_substitute.c from the latest apache source and then compile it with apxs installer.
Download the latest apache source tarball from httpd.apache.org. you need not compile it if has already been installed.
tar zxf httpd-2.2.9.tar.gz
cd modules/filters
cp mod_substitute.c /tmp
then compile and install with apxs
apxs -cia mod_substitute.c
then open /etc/conf/httpd.conf and add a line like this…
LoadModule substitute_module modules/mod_substitute.so
This this is done, you have to setup mod_subsitute to do the filtering.
In .htaccess add lines like
AddOutputFilterByType SUBSTITUTE text/html
Substitute s/foo/bar/ni
AddOutputFilterByType SUBSTITUTE text/html
Substitute s/foo/bar/ni