热搜词
发表于 2008-9-23 10:51:56 | 显示全部楼层 |阅读模式
用文本编辑器(不能用记事本)打开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 编辑 ]
全部评论0
回复
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|手机版|小黑屋|管理员之家 ( 苏ICP备2023053177号-2 )

GMT+8, 2024-12-23 10:54 , Processed in 0.162340 second(s), 22 queries .

Powered by Discuz! X3.5

Cpoyright © 2001-2024 Discuz! Team