Hello,
I have added the following configuration in httpd.conf file to insert an output filter handler into the output filters chain for processing .html files before sending them to the client.
...
PerlRequire /usr/local/libexec/perl/startup.pl
PerlModule Apache::CustomFilterTitle
<Files ~ "*\.html">
PerlOutputFilterHandler Apache::CustomFilterTitle
</Files>
...
This is working as expected.
My question is, I need to find a way to invoke the handler ONLY for a particular user-agent.
Here is my environment
Red Hat Enterprise Linux
Apache/2.0.46
perl, v5.8.0
I apperciate your help
Thanks
Woinshet