Thanks for the last reply, was helpfull, but I am still a bit hesitant here. In my .htaccess file, I currently have this
<Limit GET POST>
order deny,allow
deny from all
allow from all
I think that allows anyone to browse, correct?
Now if I edit it like this, will that filter the specified IP's? Do I need to reverse the order to allow,deny?
<Limit GET POST>
order deny,allow
deny from 148.233.111.232
deny from 148.233.37.88
allow from all
Is it also correct to assume that "GET POST" means browse, and "PUT DELETE" means authoring the website?
Thanks for your patience, I am most definitely a NEWBIE!
XY