I'm using as a web crawler http://phpcrawl.cuab.de for one of my projects and it`s working fine so far, except that I don't know how to exclude or skip links with a specific name.
There are rules I use already to ignore specific file types
$crawler->addURLFilterRule("#\.(jpg|jpeg|gif|png|css|js|pdf|swf|ico)$# i");
see http://phpcrawl.cuab.de/classreferences/PHPCrawler/overview.html
but how can I add a filter for names within a link?
i.e. ignore links that include %feed% or %imprint% etc.