apache中怎么配置网站的默认首页
2、在这个文件里,凡是以"#"开头的每一行,都是无效的,如果你想让你的设置起作用,就要把行首的"#"去掉.
3、找到 DirectoryIndex 这段.把它改成DirectoryIndex index.php index.Html index.html 这样,你的网站目录的默认首页是 index.php, 如果没有index.php系统会自动寻找index.html、html做为默认首页了。
4、注意事项:index.php index.Html之间要有一个空格
5、另外还可以操作一下其它的:
6、找到 ServerRoot 这段.将它设成你的Apache安装目录,我的是 ServerRoot "D:/Apache Group/Apache2"
7、找到 DocumentRoot 这段.把他设成你网站的根目录,我的是 DocumentRoot "D:/Apache Group/web 。
2024-10-28 广告
Apache配置域名之后,我们还需要对Apache项目配置一个默认主页
2.打开httpd.conf文件输入:在文件末位添加:
<Directory "F:/www_php/blog_com/my_blog">
Options Indexes FollowSymLinks Includes
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex blog_index.php default.php index.html
</Directory>
3.另一种方法:查找# Virtual hosts
将# Include conf/extra/httpd-vhosts.conf前面的“#”去掉
打开Apache目录下Apache2.2\conf\extra\httpd-vhosts.conf文件
在文件末尾添加
<Directory "F:/www_php/blog_com/my_blog">
Options Indexes FollowSymLinks Includes
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex blog_index.php default.php index.html
</Directory>
4.重启就可以了
步骤:
找到并打开conf目录下httpd.conf文件;
在httpd.conf文件中找到DirectoryIndex代码段;
将DirectoryIndex代码段修改为:DirectoryIndex index.php index.html样式,便可支持index.php/indexhtml首页了;
其他首页格式同理修改即可。
Apache是世界使用排名第一的Web服务器软件。它可以运行在几乎所有广泛使用的计算机平台上,由于其跨平台和安全性被广泛使用,是最流行的Web服务器端软件之一。它快速、可靠并且可通过简单的API扩充,将Perl/Python等解释器编译到服务器中。
同时Apache音译为阿帕奇,是北美印第安人的一个部落,叫阿帕奇族,在美国的西南部。也是一个基金会的名称、一种武装直升机等等。
找到并打开conf目录下httpd.conf文件;
在httpd.conf文件中找到DirectoryIndex代码段;
将DirectoryIndex代码段修改为:DirectoryIndex index.php index.html样式,便可支持index.php/indexhtml首页了;
其他首页格式同理修改即可,可参考快云VPS之家,相关详细图文教程。
找到 DirectoryIndex 这段.把它改成DirectoryIndex index.php index.Html index.html 这样,你的网站目录的默认首页是 index.php, 如果没有index.php系统会自动寻找index.html、html做为默认首页了。