RHEL 6 LAMP(一)(3)

来源:未知 责任编辑:责任编辑 发表时间:2015-09-17 09:43 点击:

    # the following line instead:

    #

    #UserDir public_html #用户的默认页面的目录

 

</IfModule>

修改为

<IfModule mod_userdir.c>

    #

    # UserDir is disabled by default since it can confirm the presence

    # of a username on the system (depending on home directory

    # permissions).

    #

    UserDir disabled root

 

    #

    # To enable requests to /~user/ to serve the user's public_html

    # directory, remove the "UserDir disabled" line above, and uncomment

    # the following line instead:

    #

    UserDir public_html

 

</IfModule>

 

去掉下列内容前面的#号,并在Indexes前面加“-”号

<Directory /home/*/public_html>

    AllowOverride FileInfo AuthConfig Limit

    Options MultiViews -Indexes SymLinksIfOwnerMatch IncludesNoExec

    <Limit GET POST OPTIONS>

        Order allow,deny

        Allow from all

    </Limit>

    <LimitExcept GET POST OPTIONS>

        Order deny,allow

        Deny from all

    </LimitExcept>

</Directory>

 

 

b、添加用户,并建立个人主页的目录

adduser test #添加用户

cd /home/test

mkdir public_html #在用户目录里面建立个人主页使用的目录

chown test.test public_html #配置个人主页使用的目录的权限

chmod o+x /home/test #给用户主目录添加其他用户列出权限(不加就打不开)

cd /home/test/public_html

echo "test" > index.html

c、重启服务并测试

service httpd restart

 

浏览器输入http://ip/~test测试

--------------------------------------------------------------------

基于名称的虚拟主机(重点)

1、做DNS

vi /etc/named.conf

改3个any

vi /etc/named.rfc1912.zones

添加

zone "amao.com" {

        type master;

        file "amao.com.hosts";

};

-----------------

cd /var/named/

cp named.localhost amao.com.hosts

vi amao.com.hosts

添加

www     IN      A       你的web服务器的ip

---------

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • /etc/fstab 详解
  •  LVS-NAT和LVS-DR模式的实现详解
  •  RHCE考试之磁盘配额
  • nginx主主集群
  •  LVM逻辑卷管理器
  • 学习笔记:ACL详解
  • suse linux双网卡双网关配置
  • puppet文件服务配置
  •  Linux System and Performance Monitoring(Network篇)

快速直达

操作系统导航

LinuxWindows虚拟机
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1