首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

apche conf 更动首页

2012-06-30 
apche conf 更改首页\Apache\conf\httpd.conf#默认虚拟主机NameVirtualHost *:80VirtualHost *:80Server

apche conf 更改首页
\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>


热点排行