- 論壇徽章:
- 0
|
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>
|
|