Hi,

I use this module to mask all Views-generated feeds on various sites as Feedburner links. But in case of one of the feeds I have noticed somebody or something is accessing the direct URL, keeps changing it to keep it unique, and overloads the server.

Example - /viewname/feed is masked as feedproxy.google.com/viewname. When Google / Feedburner requests the feed, the log shows just /viewname/feed. So this is OK.
But I have thousands of direct requests like /viewname/feed/2c4d43fa0393dd8a81c513e51296027a where the (apparent) hash value changes. This means that the server is forced to generate an answer for each of them. The requests are coming from Googlebot, though I wonder where it has learned about them.

It would be easy to mitigate this problem using .htaccess, but I've been wondering whether this module could help with a more generic solution: If the module knows the feed is /viewname/feed, it could simply make sure that, just like /viewname/feed, also everything like /viewname/feed/* should redirect to feedproxy.google.com/viewname.

Possible? Other thoughts? Thanks!