Here is my setup. I Have allowoveride set to authconfig indexes limit
The web root file carries a .htaccess file that reads the following:
Order Deny,Allow
Deny from All
Allow from 192.168.0
AuthType Basic
AuthName "Axman's Website"
AuthUserFile /var/require valid-user
Satisfy Any
Now my challenge is that I want to restrict access from certain folders to only local and not over the internet. I have added rules such as to the httpd.conf:
<Location /manual/*>
Order Deny,Allow
Deny from all
Allow from 192.168.0
AllowOverride None
</Location>
The rule works fine when the .htaccess file is removed. How do I set everything to make it work for me?
The web root file carries a .htaccess file that reads the following:
Order Deny,Allow
Deny from All
Allow from 192.168.0
AuthType Basic
AuthName "Axman's Website"
AuthUserFile /var/require valid-user
Satisfy Any
Now my challenge is that I want to restrict access from certain folders to only local and not over the internet. I have added rules such as to the httpd.conf:
<Location /manual/*>
Order Deny,Allow
Deny from all
Allow from 192.168.0
AllowOverride None
</Location>
The rule works fine when the .htaccess file is removed. How do I set everything to make it work for me?