| Moxy documentation | Contained in the Moxy distribution. |
Moxy::Plugin::RefererCutter - remove referer
do not send referer.
Tokuhiro Matsuno
| Moxy documentation | Contained in the Moxy distribution. |
package Moxy::Plugin::RefererCutter; use strict; use warnings; use base qw/Moxy::Plugin/; sub request_filter :Hook { my ($self, $context, $args) = @_; $args->{request}->remove_header('Referer'); } 1; __END__