如何在Ubuntu中设置Apache Web 服务器支持 UserDir 特性
????? Apache Web 服务器支持 UserDir 特性(即用户目录).
????? 这个特性会将下面格式的URL:
????? http://www.foo.com/~bob/one/two.html
????? 映射到目录/home/bob/www/one/two.html.
????? 这种映射目录路径的构成还有几种其他形式,关于UserDir的内容,可以见下面的web:
????? 1.http://www.centos.org/docs/5/html/5.1/Deployment_Guide/s3-httpd-mig-main-map.html
????? 2.http://httpd.apache.org/docs/2.0/mod/mod_userdir.html#userdir
????? 3.http://httpd.apache.org/docs/2.0/howto/public_html.html
????? 实验这个特性,是在Ubuntu 10.10上进行的,Apache Web服务为apache 2.2.
????? 设置的核心内容在上面的几个web中已经得到了说明,主要的问题是在Ubuntu中,
apache的设置方式.
????? apache的配置文件位于/etc/apache2中.在此,要关注的是文件apache2.conf,目录
mods-available,mods-enabled.
????? apache2.conf是主要配置文件,其中对module的配置使用了下面的指令:
<IfModule mod_php5.c> <FilesMatch "\.ph(p3?|tml)$"> SetHandler application/x-httpd-php </FilesMatch> <FilesMatch "\.phps$"> SetHandler application/x-httpd-php-source </FilesMatch> # To re-enable php in user directories comment the following lines # (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it # prevents .htaccess files from disabling it.# <IfModule mod_userdir.c># <Directory /home/*/public_html># php_admin_value engine Off# </Directory># </IfModule></IfModule>
?????? 重启Apache服务器后,即可在之前建立的测试目录下编写一个php脚本进行测试了.