Can you block visitors using HTML?

  • Thread starter Thread starter evers1234
  • Start date Start date
E

evers1234

Guest
What I mean is...

Is it possible to only allow someone to view an HTML page if they are redirected from a certain url?
 
Very simple; just modify your .htaccess

Order allow, deny
Deny from 192.168.0.10
Deny from 212.155.
Deny from 1.2.3.4 5.6.7.8 127.0.0.1
Allow from all
 
Back
Top