windows 7 - servidor - ¿Cómo acceder a mi localhost desde otra PC en LAN?
como saber el puerto de mi localhost (4)
Actualmente, no necesita una conexión a Internet para usar la dirección IP. Cada computadora en LAN tiene una dirección IP interna que puedes descubrir al ejecutar
ipconfig /all
en cmd.
Puede usar la dirección IP del servidor (probablemente algo así como 192.168.0.xo 10.0.0.x) para acceder al sitio web de forma remota.
Si encontraste la ip y todavía no puedes acceder al sitio web, significa que WAMP no está configurado para responder a ese nombre (¿cómo me llamaste? 192.168.0.3? Ese no es mi nombre. Soy Localhost) y tienes que modificarlo. ..... / apache / config / httpd.conf
Listen *:80
Estoy usando el servidor WAMP para ejecutar mi sitio web. Estoy usando Windows 7.
Creé LAN entre 2 PC y quiero acceder a mi localhost desde la segunda PC.
Tenga en cuenta que no estoy usando la conexión a Internet, así que no pude usar la dirección IP.
Por favor, dame tu sugerencia
Tienes que editar httpd.conf
y encontrar esta línea: Listen 127.0.0.1:80
Luego anote la IP deseada que configuró para LAN. No use IP automática.
Ej .: Listen 192.168.137.1:80
192.167.137.1
como mi LAN IP de Windows 7. Reinicie Apache y disfrute compartiendo.
IP puede ser cualquier dirección IP LAN o WAN. Pero querrá configurar su conexión de firewall para permitirlo.
La conexión del dispositivo con la PC del servidor web puede ser por LAN o WAN (es decir, por wifi, connectify, adhoc, cable, mypublic wifi, etc.)
Debe seguir estos pasos:
- Ir al panel de control
- Reglas de entrada> nuevas reglas
- Haga clic en el puerto> siguiente> puerto local específico> ingrese 8080> siguiente> permitir la conexión>
- Siguiente> marque todo (dominio, privado, público)> especifique cualquier nombre
- Ahora puede acceder a su servidor local desde cualquier dispositivo (computadora portátil, dispositivo móvil, computadora de escritorio, etc.).
- Ingrese la dirección IP en la URL del navegador como 123.23.xx.xx: 8080 para acceder al host local desde cualquier dispositivo.
Esta IP será de ese dispositivo que tiene el servidor web.
Después de que su PC se conecte a otra PC, use estos 4 pasos:
4 pasos:
1- Editar este archivo: httpd.conf
para eso haga clic en el servidor wamp y seleccione Apache y seleccione httpd.conf
2- Encontrar este texto: negarlo a todos
en la etiqueta siguiente:
<Directory "c:/wamp/www"><!-- maybe other url-->
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn''t give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
# Require all granted
# onlineoffline tag - don''t remove
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
</Directory>
3- Cambiar a: negar ninguno
Me gusta esto:
<Directory "c:/wamp/www">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn''t give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.4/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# AllowOverride FileInfo AuthConfig Limit
#
AllowOverride All
#
# Controls who can get stuff from this server.
#
# Require all granted
# onlineoffline tag - don''t remove
Order Deny,Allow
Deny from none
Allow from 127.0.0.1
Allow from ::1
Allow from localhost
4- Reiniciar Apache
¡No olvide reiniciar Apache o todos los servicios!