灰儿 发表于 2008-9-23 10:51:56

apache下修改httpd.conf配置文件

用文本编辑器(不能用记事本)打开httpd.conf,修改配置文件。

找到DocumentRoot " "和<Directory " ">,修改为你的网站根目录。
比如我要把E:\Web作为网站根目录,那么先建立这个目录,然后作如下修改。
DocumentRoot "E:/Web"
<Directory "E:/Web">

找到 ServerName localhost:80 ,设置网站域名,默认为localhost:80 ,修改为你的网站域名,如:
ServerName www.sq01.cn

找到 ServerAdmin admin@localhost ,设置管理员信箱,就写自己的信箱吧,如:
ServerAdmin user@163.com

找到 ErrorLog logs/error.log设置日志位置,可以修改为自定义的路径

找到DirectoryIndex index.html,把它修改成
DirectoryIndex index.html index.php index.*

修改完后记得保存。

注意:网站路径用“/”表示,如果在httpd.conf配置文件里有“Include conf/extra/httpd-vhosts.conf”一行,以上修改的网站路径不起作用,应该在conf/extra/目录下找到 httpd-vhosts.conf修改配置,如:

<VirtualHost *>
    DocumentRoot ../htdocs
    ServerName defalut:80
    ErrorLog logs/defalut-error_log
</VirtualHost>

[ 本帖最后由 灰儿 于 2008-9-24 17:56 编辑 ]
页: [1]
查看完整版本: apache下修改httpd.conf配置文件