At 03:58 PM 2/9/2004, Dustin Baer wrote: >deny webpage\.rar$ > >Is the \ required before . ? Yes, because in regular expressions, a . by itself is a single-character wildcard. (like ? in the dos filename world) ie doc.zip will match: doc2zip doc_zip docszip doc.zip etc..