APACHE多站配置,好特怪的问题!

系统安装、升级讨论
版面规则
我们都知道新人的确很菜,也喜欢抱怨,并且带有浓厚的Windows习惯,但既然在这里询问,我们就应该有责任帮助他们解决问题,而不是直接泼冷水、简单的否定或发表对解决问题没有任何帮助的帖子。乐于分享,以人为本,这正是Ubuntu的精神所在。
回复
狂家三少
帖子: 161
注册时间: 2007-08-11 21:44

APACHE多站配置,好特怪的问题!

#1

帖子 狂家三少 » 2007-11-10 16:06

代码: 全选

<VirtualHost *> 
 ServerName i.xmshe.cn
 ServerAdmin server@xmkai.com
DocumentRoot  /var/www/web
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined

 </VirtualHost>
这是我加入的,i.xmshe.cn 可以打开PHP的,但却打不开HTML!

代码: 全选

NameVirtualHost *
<VirtualHost *>
	ServerAdmin webmaster@localhost
	ServerName s.xmshe.cn
	DocumentRoot /var/www/
	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>
	<Directory /var/www/>
		Options Indexes FollowSymLinks MultiViews
		AllowOverride None
		Order allow,deny
		allow from all
		# This directive allows us to have apache2's default start page
                # in /apache2-default/, but still have / go to the right place
                #RedirectMatch ^/$ /apache2-default/
	</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
	ServerSignature On

    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>

<VirtualHost *> 
 ServerName i.xmshe.cn
 ServerAdmin server@xmkai.com
DocumentRoot  /var/www/web
ErrorLog /var/log/apache2/error.log
CustomLog /var/log/apache2/access.log combined

 </VirtualHost>
这是全部代码


第一个:s.xmshe.cn可以支持HTML

但第二个:i.xmshe.cn 却只能支持PHP,不能打开HTML静态文件,为什么呢?

权限都是:777的
回复