基本要求:有一个apache2.0的安装。并且包含了mod_userdir模块。 默认的安装包含该模块。
[code]./configure --disable-all --enable-module=alias
--enable-module=access --enable-module=auth --enable-module=log_config
--enable-module=dir --enable-module=mime --enable-module
=userdir
make
make install[/code]
###编辑httpd.conf。添加内容如下
[code]UserDir sites
UserDir enabled testuser #只给这个用户开启个人空间[/code]
###使每个用户都拥有各自的cgi脚本目录
[code]
Options ExecCGI
SetHandler cgi-script
########结束##########
说明:用UserDir dir指定目录时,dir可以有三种表示方法
<1>UserDir dir 目录前没有“/”,此时指该dir在用户的主目录里.
既http://localhost/~test----->/home/test/dir test用户的个人主页空间
<2>UserDir /var/web 此时用户主页存放在/var/html/username目录里
httpd://localhost/~testuser----->/var/web/testuser
<3>UserDir /var/*/html 此时的用户的主页存放在/var/username/html目录里
httpd://localhost/~testuser------->/var/testuser/html
2、准备目录
[code]cd /etc/skel
mkdir sites
echo "this is user homepage" >> sites/index.html[/code]
3、添加实验用户
[code]useradd testuser[/code]
4、测试
http://domainname/~testuser
丁丁 于 2006-11-28 17:13:38发表:
呵呵!~~学习
宿飞 于 2006-09-09 19:00:30发表:
不错,今天刚发的吧