Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: ip address access setting

by nardo (Friar)
on Apr 19, 2001 at 08:38 UTC ( [id://73757]=note: print w/replies, xml ) Need Help??


in reply to ip address access setting

There are several ways to do this. You could make go.html a cgi script which checks $ENV{'REMOTE_ADDR'} and if it isn't an approved IP address, prints out a "Status: 404 Not Found" line in the header along with the text of the 404 error document (Apache will read your Status line, I'm not sure if all web servers do this though). Another way is to put go.html in a directory which is not accessable to the outside world, set up a script as a 404 handler (in apache this would be "ErrorDocument 404 /cgi-bin/my404handler.cgi") which checks if $ENV{'REMOTE_ADDR'} has permission to access $ENV{'REQUEST_URI'} and send them the file if they do, otherwise send them a 404 page (as described above).

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://73757]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (5)
As of 2024-04-25 23:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found