Page is a not externally linkable
jdMorgan - 10:48 pm on May 21, 2003 (gmt 0)
No, just What I was talking about above is this: -and- There is no need to anchor a pattern if the characters adjacent to that anchor are wild-cards. Fewer unneeded characters means smaller files and faster regex processing. Ref: A concise Regular Expressions Tutorial [etext.lib.virginia.edu] HTH,
Wizcrafts,
RewriteRule .* - [F]
will do - there is no need to start- or end-anchor a pattern which is completely wild-carded.
^somepattern.*$
can just as easily be written
^somepattern
^.*somepattern$
can be shortened to
somepattern$
Jim