8.10Desktop+Apache,为什么有的xp+IE不能访问?

Web、Mail、Ftp、DNS、Proxy、VPN、Samba、LDAP 等基础网络服务
回复
头像
NetDreamer
帖子: 858
注册时间: 2007-10-19 20:40
联系:

8.10Desktop+Apache,为什么有的xp+IE不能访问?

#1

帖子 NetDreamer » 2008-12-05 10:39

在Ubuntu 8.10 Desktop 下 安装 Apache,更改网站默认位置到Home下。
本机firefox能够访问;
本机VirtualBox + XP + IE 能够访问;
同局域网的一台Win98能够访问;
同局域网的两台XP + IE 能够访问;
但是:
同局域网的一台XP + IE 不能访问;
同一网络的另一个局域网中的一台 Xp + IE 不能访问。

我的网站配置文件:

代码: 全选

<VirtualHost *:80>
	ServerAdmin webmaster@localhost
	
	DocumentRoot /home/user/union/
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /home/user/union/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
	</Directory>

	ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
	<Directory "/usr/lib/cgi-bin">
		AllowOverride None
		Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
		Order allow,deny
		Allow from all
	</Directory>

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

</VirtualHost>
Live and let live.
回复