Me da el siguiente error al poner en el navegador la IP:
403 Forbidden
You don't have permission to access / on this server.
Mi archivo httpd.conf contiene
DocumentRoot "c:/servidorweb/www/"
Código:
#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
-- continua ---
<Directory "c:/servidorweb/www/">
Options Indexes FollowSymLinks
AllowOverride all
#
# Controls who can get stuff from this server.
#
# onlineoffline tag - don't remove
# esto es lo que he comentado yo que me dijisteis
# Order Deny,Allow
# Deny from all
# Allow from 127.0.0.1
Order Deny, all
Deny from Allow
</Directory>
-- continua --
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
-- continua --
<Directory "cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
¿Qué debo cambiar para poder acceder???
Gracias y perdonad mi torpeza en esto... en el tema redes estoy muy verde :(