Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

allowed IP adresses and Netscape 6.1

Status
Not open for further replies.

minkas

IS-IT--Management
Aug 8, 2001
2
FR
Hi,
In my httpd.conf file I have:


<Directory DocumentRoot/oneDirectory>
AllowOverride None
Order deny,allow
Deny from all
Allow from IP-address-1 IP-address-2 IP-address-3
</Diredctory>

The directory DocumentRoot/oneDirectory is accessible in IE from all 3 IP addresses. But if I try Netscape 6.1 I receive Forbidden 403.

Any idea?
 
Hi,

Presumably the actual directory container is more like :

<Directory /oneDirectory>
Order deny,allow
Deny from all
Allow from IP-address-1 IP-address-2 IP-address-3
</Directory>

if not try that and see if it makes any difference. You could also test :

BrowserMatch ^Mozilla netscape
<Directory /oneDirectory>
Order deny,allow
Deny from all
Allow from IP-address-1 IP-address-2 IP-address-3
Allow from env=netscape
</Directory>

To see if it really is failing on browser.

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top