Use this htaccessCheck for future checks or problems. Your problem as you could see, once checked, is that you are not allowed tags such as <Directory>
in .htaccess
files.
Instead put the .htaccess
directly into the Build_Team
directory and leave off the surrounding tags.
Possibly, a bigger problem is the use of AllowOverride None
, which disables the use of .htaccess files and, obviously, has no part of any .htaccess file. AllowOverride
directive can only be part of the main config file!
As shown the snippet is correct iff put in the httpd.conf
file (name could vary). Which actually, if possible, is the better way to do it.
For more information about security concerns, you could refer to this StackOverflow answer.
Hope this helps!