通过apache访问linux家目录下的文件

1、如果原来的http.conf文件中有关于下面的记录,就修改为下面的状态。如没有,直接把下列内容添加到httpd.conf文件中。
复制内容到剪贴板
代码:
   <IfModule mod_userdir.c>
   #UserDir disable
   UserDir public_html
   </IfModule>

   <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>