I am trying to block specific ip addresses from accessing anything on my website. I have a virtual server running plesk 7.5.4. I use FrontPage 2000 to create my site so frontpage extensions are enabled. I have read sometimes messing with the .htaccess file can affect the FrontPage extensions but usually only when trying to re-direct. (not sure if this is true as there is so much conflicting info out there) Here is my original .htaccess file which I can access and edit from the file manager on my domain administration page:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
order deny,allow
deny from all
allow from all
order deny,allow
deny from all
AuthName xxxxxx.com
AuthUserFile /home/httpd/vhosts/xxxxxx.com/httpdocs/_vti_pvt/service.pwd
AuthGroupFile /home/httpd/vhosts/xxxxxx.com/httpdocs/_vti_pvt/service.grp
Below is how I changed it after reading other posts on this forum and google searches:
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
order deny,allow
deny from xx.xxx.xxx.xx
deny from xx.xx.xx.xxx
deny from xxx.xx
deny from mail.xxxxx.com
allow from all
order deny,allow
deny from all
AuthName xxxxxx.com
AuthUserFile /home/httpd/vhosts/xxxxxx.com/httpdocs/_vti_pvt/service.pwd
AuthGroupFile /home/httpd/vhosts/xxxxxx.com/httpdocs/_vti_pvt/service.grp
This has not accomplished a thing. I tested the change myself from a friends computer, even trying to block his isp's domain name as well as just entering the first 5 numbers of the range of ip addresses his isp has registered.
As I said, I made the changes on the file manager on my domain admin page. I have not republished my site to the server so not to have frontpage republish a new .htaccess file if in fact it does that each time.
I talked to 3 different support people and they weren't able to help at all.
If I change the .htaccess file from my domain administration page does it take effect immediately? Does the server have to be re-set? Is what I'm trying to do even possible? New to this stuff so I appologize in advance!!
:confused: Help! :confused: