JMarkham
unread,Nov 2, 2009, 1:14:42 PM11/2/09Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Search Appliance/Google Mini - Google Search Appliance/Google Mini
hi,
A recommendation would be to have a rule to catch both the URLs that
end in .swf, and those that have parameters.
Two rules, then.
regexp:\\.swf$
regexp:\\.swf\\?
What also might work is the contains keyword:
contains:.swf
If you might have links with capital letters in them, however, you'll
have to use regexpIgnoreCase.
regexpIgnoreCase:\\.swf$
regexpIgnoreCase:\\.swf\\?
Jeff