|
已经在RH8上配置好了MySQL+Apache+PHP,在本机通过http://127.0.0.1和http://本机IP都能访问了,可在同一个居域网内的其他机器却不能访问,想不出来问题在哪里了,请高手指点!谢谢!!
端口方面的设置已经设置如下了
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
#
#Listen *:80
Listen *:80
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If this is not set to valid DNS name for your host, server-generated
# redirections will not work. See also the UseCanonicalName directive.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
# You will have to access it by its address anyway, and this will make
# redirections work in a sensible way.
#
ServerName *:80
# |
|