rhel6 apache的安装
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-03-28
绝某个ip的访问 </Directory> <IfModule mod_userdir.c> #个人主页支持 UserDir disabled </IfModule> DirectoryIndex index.html index.html.var #目录索引页面名称 #访问控制文件.htaccess功能 AccessFileName .htaccess <Files ~ "^\.ht"> Order allow,deny Deny from all Satisfy All </Files> AddDefaultCharset UTF-8 #默认页面编码为UTF-8 ---------------------------------------------- 添加ServerName web1.amao.com 1、个人主页支持“http://ip/~用户名”访问个人主页 a、修改配置文件,支持这种访问 vi /etc/httpd/conf/httpd.conf 找到 <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 #去掉某个用户的访问 # # 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> 修改为 <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). 拥有帝国一切,皆有可能。欢迎访问phome.net # 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 拥有帝国一切,皆有可能。欢迎访问phome.net 添加 www IN A 你的web服务器的ip --------- chown root.name |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Linux中文件乱码下一篇: linux 下批量解压多个文件到每个单独的文件夹下面
关于rhel6 apache的安装的所有评论