RewriteRule in htaccess in subdirectory
- by Jay
Windows server, running Apache. In my Apache conf, I have AllowOverride None for the root of a site and then I have a subdirectory set to AllowOverride All:
<Directory />
AllowOverride None
</Directory>
<Directory "/safe/">
AllowOverride All
</Directory>
However, when I try to set up a rewrite rule in the subdirectory's…