From: "Jonathan Vanasco" <[EMAIL PROTECTED]>
> I've got mp set up to handle a bunch of directories off of / - super > simple > > I want to toss my index.html and a few other pages through modperl > > i can't seem to figure out how to map files to a handler and not > directories > > this, i think, is the dumbest and simplest question i've ever asked > here. i'm actually ashamed a can't figure this out and am making fun > of myself for it as you read this. <Location /index.html> or just for the / dir only and not sub-dirs: <LocationMatch ^/$> Or <FilesMatch> for matching real files and not locations... Teddy