多语言展示
当前在线:1166今日阅读:176今日分享:34

Apache配置默认主页

Apache配置域名之后,我们还需要对Apache项目配置一个默认主页作为欢迎界面
工具/原料
1

Apache2.2

2

电脑

Apache配置默认主页
1

进入Apache的conf目录

2

打开httpd.conf文件输入:在文件末位添加:         Options  Indexes FollowSymLinks Includes      AllowOverride None      Order allow,deny      Allow from all      DirectoryIndex blog_index.php default.php index.html    

3

另一种方法:3.1:查找# Virtual hosts3.2:   将# Include conf/extra/httpd-vhosts.conf前面的“#”去掉3.3:  打开Apache目录下Apache2.2\conf\extra\httpd-vhosts.conf文件3.4:在文件末尾添加         Options  Indexes FollowSymLinks Includes      AllowOverride None      Order allow,deny      Allow from all      DirectoryIndex blog_index.php default.php index.html    

4

重启

测试

输入blog.com如果能正常访问项目主页则成功

注意事项
1

还可以参考我的绑定域名

2

还可以参考我的配置虚拟目录

推荐信息