...
To set a global policy that blocks access to user agents that don't contain "Mozilla," you can use the following configuration in your httpd.conf file:
| Code Block |
|---|
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !Mozilla [NC]
RewriteRule ^ - [F]
</IfModule> |
...
| Code Block |
|---|
sudo systemctl restart httpd # on CentOS/RHEL sudo systemctl restart apache2 # on Debian/Ubuntu |
Hot to set a local policy for your web application?
You should add below scripts on top of .htaccess in your web application
...