A.如何为每个用户设置单独的主页?
默认设置情况下,你需要在你的用户主目录中创建目录public_html,然后把你的所有网页文件放在该目录下即可,打入http://servername/~username访问,但是请注意以下几点:
1.登录为root,修改用户主目录权限(#chmod 705 /home/username),让其他人有权进入该目录浏览。
2.以自己的用户名登录,创建public_html目录,保证该目录也有正确的权限让其他人进入。
3. Apache默认的主页文件是index.html,不是index.htm,你可以改变/etc/mime.types文件中的一行象下面。
text/html html htm
然后Apache会读你的index.htm文件4.用户自己在主目录下创建的目录最好把权限设为0700,确保其他人不能进入访问。
B.如何设虚拟主机?
1.假设某台服务器IP为192.168.11.2,要虚拟另一IP address为192.168.11.4,则加下面的行到/etc/rc.d/rc.local
/sbin/ifconfig eth0:0 192.168.11.4 /sbin/route add -host 192.168.11.4 eth0:0
2.加下面的行到/home/httpd/conf/httpd.conf
VirtualHost 192.168.11.4 (此行有<>)
ServerAdmin your_email_address
DocumentRoot /home/httpd/foldername
ServerName
virtualservername
ErrorLog /var/log/httpd/foldername/error.log
TransferLog /var/log/httpd/foldername/access_log/VirtualHost (此行有<>)
3.若在你的LAN中有DNS服务器,加上相应的项192.168.11.4--->virtualservername
C.如何用Apache给某个目录以密码保护?
默认情况下,可在某个目录下放一个文件.htaccess,象下面这样:
AuthName stuff
AuthType Basic
AuthUserFile /etc/.userpasswd
require valid-user
为了给用户user1进入访问,用# htpasswd -c /etc/.userpasswd user1为user1分配密码。
D.如何把某个目录共享出来用浏览器访问?如/home/ftp/pub/
1.加下面的行到/home/httpd/conf/srm.confAlias /pub /home/ftp/pub/2.更改默认文件类型,改/home/httpd/conf/srm.conf中一行为:
DefaultType application/octet-stream 3.重新启动Apache. /etc/rc.d/init.d/httpd restar