apche conf 更改首页_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > apche conf 更改首页

apche conf 更改首页

 2012/2/28 18:02:17  qson  程序员俱乐部  我要评论(0)
  • 摘要:\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">
  • 标签:
\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>


  • 相关文章
发表评论
用户名: 匿名