I'm working to migrate a WordPress site from Apache to Hiawatha. The site currently has two .htaccess files with
deny from all
, so I've created a URLToolkit:
UrlToolkit {
ToolkitID = deny_from_all
Match [^?]*(\?.*)? DenyAccess
}
I then created a .hiawatha file in each directory that contained the aforementioned .htaccess files, each containing only
UseToolkit = deny_from_all
.
Using wigwam to test, it seems that my toolkits are functioning correctly (I see 403 returned). But when I try to access those paths from a browser, I get a 500 error instead of a 403. I assume I'm Doing It Wrong^TM, though, so I'd really appreciate a hand with this.
Thanks in advance.