For a requirement like that you probably need to do one of two things:
1) Write a very long regex url with something like (word1|word2|word3...). Wouldn't be my first choice but should work. 2) Write you own URL filter plugin that can filter by word. Check out the domain url filter as an example. It has most of the elements you would need. Loading words from a file, checking urls, etc.
Dennis On 11/15/2010 12:44 PM, Eric Martin wrote:
Hi, I've been messing with regex a bit and I am trying to figure out how to skip urls with the word javascript anywhere in the actual URL. I suppose trying to nail down how to make this a blanket rule is best. I guess my real question is how can I make a skip list of keywords found it the URL? Should I use regex to do that? Eric

