Forum Moderators: phranque
Any commands I put into the subdirectory .htaccess are just ignored, like the file doesn't even exist.
Is there a setting I can set? I find mucking with the .htaccess to be very dangerous. I often take my entire server offline with a simple typo.
For example:
/.htaccess
Redirect /full/path/file.html [site.com...]
... works
/full/path/.htaccess
Redirect file.html [site.com...]
... doesn't
You need to have this, regardless of the location of the .htaccess file.
Redirect /full/path/file.html [site.com...]
Will Apache only load this .htaccess file if it tries to access the directory? I'll eventually have a few thousand redirects in here, so I don't want my server trying to load this file every time it loads a file off the entire webserver.