Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


gareth41

742 posts

Ultimate Geek
+1 received by user: 79


#73399 13-Dec-2010 19:27
Send private message

im after a .htaccess file for apache server that will generate a 404 for a given dir unless the clients ip is in a specified list.

So anyone who tries to view the folder using a web browser will not know its there, eg it will appear as if it doesnt exist.

Create new topic
ptinson
677 posts

Ultimate Geek
+1 received by user: 27

Trusted

  #425709 10-Jan-2011 12:10
Send private message

gareth41: im after a .htaccess file for apache server that will generate a 404 for a given dir unless the clients ip is in a specified list.

So anyone who tries to view the folder using a web browser will not know its there, eg it will appear as if it doesnt exist.


Don't know if you got this sorted but you can do it with a rewrite rule:

RewriteEngine on
RewriteCond %{REMOTE_ADDR} !=<some ip you want to allow>
RewriteRule ^somepath - [R=404]

I would suggest reading up on mod_rewrite, and working out what you want.
http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html
You didn't say what version of apache so i have assumed 2.x

I would also suggest not using .htaccess if you can avoid it, your hosting situation may force you down this path though.

Paul




meat popsicle

Create new topic








Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.