• Welcome to Overclockers Forums! Join us to reply in threads, receive reduced ads, and to customize your site experience!

.htaccess file

Overclockers is supported by our readers. When you click a link to make a purchase, we may earn a commission. Learn More.

Mother Goose

New Member
Joined
Aug 11, 2008
Location
Heading towards St. Ives
Hi, I have a specific section of my webpage that I want to allow people from work to access (it's my work page). For example, people from my work are all coming from user1.nest.com, user2.nest.com, etc. and let's call this section www.mothergoose.com/work.

So essentially I want to allow anybody from nest.com to access the work section of the site, but deny them access to everything else. The tricky part is that /work is automatically generated by blog software (that is, there is NO physical folder on my server).

What I need is something like,

Code:
If trying to access /work
     allow all
else
     deny from nest.com

Notice that /work is a subpath of the main root folder.
 
Last edited:
Back