We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This file:
https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker/blob/master/_htaccess_versions/htaccess-mod_rewrite.txt#L15
The last two rules referes to spambot but spambot is nowhere to be found in rule number 1.
I do not think there is any need to include
<IfModule !mod_authz_core.c> Order allow,deny Allow from all Deny from env=spambot
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This file:
https://github.com/mitchellkrogza/apache-ultimate-bad-bot-blocker/blob/master/_htaccess_versions/htaccess-mod_rewrite.txt#L15
The last two rules referes to spambot but spambot is nowhere to be found in rule number 1.
I do not think there is any need to include
For Apache 2.2 Use
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
Deny from env=spambot
For Apache 2.4 Use
Require all granted Require not env spambotThe text was updated successfully, but these errors were encountered: