redhat9下使用apache2.0實現個人主頁空間的方法1(轉)

post0發表於2007-08-09
redhat9下使用apache2.0實現個人主頁空間的方法1(轉)[@more@]

系統平臺:redhat9.0

基本要求:有一個apache2.0的安裝。並且包含了mod_userdir模組。 預設的安裝包含該模組。

./configure --disable-all --enable-module=alias --enable-module=access --enable-module=auth --enable-module=log_config --enable-module=dir --enable-module=mime --enable-module=userdir

make

make install

###編輯httpd.conf。新增內容如下

UserDir sites

UserDir enabled testuser #只給這個使用者開啟個人空間

###使每個使用者都擁有各自的cgi指令碼目錄

Options ExecCGI

SetHandler cgi-script

########結束##########

說明:用UserDir dir指定目錄時,dir可以有三種表示方法

<1>UserDir dir 目錄前沒有“/”,此時指該dir在使用者的主目錄裡.

既~test-----&gt/home/test/dir test使用者的個人主頁空間

<2>UserDir /var/web 此時使用者主頁存放在/var/html/username目錄裡

httpd://localhost/~testuser-----&gt/var/web/testuser

<3>UserDir /var/*/html 此時的使用者的主頁存放在/var/username/html目錄裡

httpd://localhost/~testuser-------&gt/var/testuser/html

2、準備目錄

cd /etc/skel

mkdir sites

echo "this is user homepage" >> sites/index.html

3、新增實驗使用者

useradd testuser

4、測試

~testuse

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8225414/viewspace-937999/,如需轉載,請註明出處,否則將追究法律責任。

相關文章