blob: 438cccdffc2ffca5b21a92821b172da37aeec4ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
#------------------------------------------------------------------------------
# Server root folder www .htaccess
# This file provides server security limiting access to the localhost only.
# Comment next four lines to deactivate. (Allows external access)
#------------------------------------------------------------------------------
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
|