Could do. However, I recommend putting a rule into your .htaccess file.
Thread Starter
Anonymous User 14978628
(@anonymized-14978628)
@macsteini for those without the technical know how to do this. Is there anything you could suggests?
Thread Starter
Anonymous User 14978628
(@anonymized-14978628)
I am aware of the 6G firewall, but from my understanding it doesn’t block old browsers.
I have found this code which i modified slightly.
What do you think of this, does it look ok?
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
##### Really Old Web Browser
RewriteCond %{HTTP_USER_AGENT} ^.*Mozilla\/[1-4]\\.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Chrome\/[1-9]\\.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Firefox\/[1-9]\\.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*MSIE\s[1-6]\\.* [NC,OR]
RewriteCond %{HTTP_USER_AGENT} ^.*Opera* [NC]
##### Fake Mozilla USER_AGENT Missing "/[1-9][0-9.][0-9.]
RewriteCond %{HTTP_USER_AGENT} ^.*Mozilla* [NC]
RewriteCond %{HTTP_USER_AGENT} !^.*Mozilla\/[1-9][0-9.][0-9.]* [NC]
##### Fake Chrome USER_AGENT Missing "/[1-9][0-9.][0-9.]
RewriteCond %{HTTP_USER_AGENT} ^.*Chrome* [NC]
RewriteCond %{HTTP_USER_AGENT} !^.*Chrome\/[1-9][0-9.][0-9.]* [NC]
##### Fake Firefox USER_AGENT Missing "/[1-9][0-9.][0-9.]
RewriteCond %{HTTP_USER_AGENT} ^.*Firefox* [NC]
RewriteCond %{HTTP_USER_AGENT} !^.*Firefox\/[1-9][0-9.][0-9.]* [NC]
##### Fake Internet Explorer USER_AGENT
###MSIE Has a Different Format Than Other Browsers Eg. "MSIE VERSION"
RewriteCond %{HTTP_USER_AGENT} ^.*MSIE* [NC]
RewriteCond %{HTTP_USER_AGENT} !^.*MSIE\s[1-9][0-9.][0-9.]* [NC]
RewriteRule .* - [F,L]
</IfModule>