Apache安装常见配置(修改主目录、首页文件、建立虚拟主机等)

pop:今天研究了一下Apache,发现这个东西比IIS还是好用多了,不过需要熟悉,稍微一错误就可能会导致网站无法访问,下面就是我的一些基础配置。

打开Apache下的conf文件夹,修改“httpd.conf”这个配置文件
默认路径如:C:\Program Files\Apache Software Foundation\Apache2.2\conf

1、修改主目录

将“”和“DocumentRoot”这里修改一致,如
DocumentRoot "D:\website\maked\new_popx.us"

2、修改首页文件
DirectoryIndex index.html index.htm index.shtml

3、增加虚拟目录

在 httpd.conf 的 alias_module 下增加一别名定义项,
如:Alias "/gg" "D:\website\gg",即可定义虚拟目录。

/gg 是网页的目录名称
"D:\website\gg" 是网页文件的物理路径

Alias "/gg" "D:\website\gg"

Options FollowSymLinks
AllowOverride None
order allow,deny
Allow from all

4、禁止目录访问
Options Indexes FollowSymLinks
AllowOverride None
order allow,deny
Allow from all

将其中的“Options Indexes FollowSymLinks”取消,或者将其修改为“Options -Indexes FollowSymLinks”

5、虚拟主机配置
Options FollowSymLinks
AllowOverride None
order deny,allow
Deny from all

1、先将其中的“Deny from all”修改成“Allow from all”
2、要保证 Listen 80

第一种方法:在httpd.conf写入下面的代码

NameVirtualHost *:80
ServerName www.429006.com
DocumentRoot "D:\website\gg"
ServerName 1.429006.com
DocumentRoot "D:\website\firefox"

第二种方法:
将httpd.conf下的“#Include conf/extra/httpd-vhosts.conf” 取消前面的“#”注释,使之生效
打开Apache下的“conf/extra/httpd-vhosts.conf”文件,添加虚拟主机信息
ServerName www.429006.com
DocumentRoot "D:\website\gg"
ServerName 1.429006.com
DocumentRoot "D:\website\firefox"

在conf/extra/httpd-vhosts.conf下面有两个实例,为例以后备用,建议大家使用#将其注释,不要删除

[color=Yellow]注意:
其中的“NameVirtualHost *:80”不能丢,还有就是这里面的“*:80”是不能修改的,不要以为“*”是需要修改的,这里不能修改。[/color]

6、虚拟主机权限设置
Options Indexes FollowSymLinks
AllowOverride None
order allow,deny
Allow from all

Related Posts