Dear Wiki user, You have subscribed to a wiki page or wiki category on "Httpd Wiki" for change notification.
The following page has been changed by megaspaz: http://wiki.apache.org/httpd/Recipes/TomcatModProxyHTML The comment on the change is: Added LoadFile directive line in case of errors starting up Apache with libxml2. ------------------------------------------------------------------------------ {{{LoadModule proxy_html_module modules/mod_proxy_html.so }}} + '''***Note***''' If you get errors starting up Apache regarding mod_proxy_html and libxml2, you can add the '''!LoadFile''' directive below before the '''!LoadModule''' directives. + + {{{LoadFile /path/to/libxml2.so + }}} + + Make sure '''/path/to''' is your real system path to the libxml2.so library. + With the module compiled, built and loaded, we can now use mod_proxy_html to fix links. To use the mod_proxy_html directives, you need to make sure that if '''<!IfModule mime_module>''' is being used, then you must put the directives in that '''<!IfModule>''' block. If this block isn't being used, then you can put the directives anywhere in your server configuration file. The Tomcat management page will be used in the following example. {{{# Fix mod_proxy urls.
