you are denying access to all:
Deny from all
you need to allow users. to allow only yourself, use:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Directory>
to alllow access to everyone, use:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
Satisfy all
</Directory>
1
Forum:
WampServer English