Chinaunix

标题: apche conf 更改首页 [打印本页]

作者: 听老歌    时间: 2012-03-01 20:13
标题: apche conf 更改首页
apche conf 更改首页

php
\Apache\conf\httpd.conf

#默认虚拟主机
NameVirtualHost *:80
<VirtualHost *:80>
   ServerName *
   DocumentRoot "D:/php/apmserv/APMServ5.2.6/www/htdocs"
   <Directory "D:/php/apmserv/APMServ5.2.6/www/htdocs">
     Options FollowSymLinks IncludesNOEXEC Indexes
     DirectoryIndex index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml     
     AllowOverride None
     Order Deny,Allow
     Allow from all
   </Directory>
</VirtualHost>

DirectoryIndex:index.html index.htm default.htm index.php default.php index.cgi default.cgi index.pl default.pl index.shtml

该参数是按照顺序排列的。首先访问index.html.若没有访问index.htm 所以我们一般只使用一个。即:
#默认虚拟主机
NameVirtualHost *:80
<VirtualHost *:80>
   ServerName *
   DocumentRoot "D:/php/apmserv/APMServ5.2.6/www/htdocs"
   <Directory "D:/php/apmserv/APMServ5.2.6/www/htdocs">
     Options FollowSymLinks IncludesNOEXEC Indexes
    DirectoryIndex index.php      
     AllowOverride None
     Order Deny,Allow
     Allow from all
   </Directory>
</VirtualHost>


作者: 芯忻相依    时间: 2012-03-01 22:39
谢谢分享




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2