Apache中如何设置网站默认首页?

来源:互联网 发布:灵魂相认知乎 编辑:程序博客网 时间:2024/05/01 03:04

环境:

1)WIN2003(X86)阿里云ECS

2)apache2.2(启用vhosts.conf)

步骤:

1)打开apache\conf\extra\httpd-vhosts.conf

2)在 VirturalHost标签对中输入DirectoryIndex index.php //index.php即为网站默认首页

<VirtualHost *:80>   DocumentRoot D:\www\abc   ServerName www.abc.com   DirectoryIndex index.php </VirtualHost>


0 0