I know in a VirtualHost definition I can have:
AccessFileName .myfilename
However, apache does not allow this:
AccessFileName /absolute/location/of/.myfilename
Is there some sort of a workaround? I want to have one directory which is used with multiple sites, but I would like to have different .htaccess files with rules on a per-site basis.
I know I can set the rules in the VirtualHost definition, but that requires restarting / reloading apache each time I make changes.
I realize I could have different file names for each site, but I was trying to keep from cluttering up the directory.
Is there a good way to do this?