有關apache22 讓每個帳號都能有自己的網頁資料夾

在apache22 要讓每個使用者都能見一個資料夾當作網頁存放地
並讓apache能去讀的方法就是在httpd.conf下,最下方加上下方的程式碼

<IfModule mod_userdir.c>
UserDir
WWW
</IfModule>

其中WWW就是指定每個user在其家目錄下建立WWW資料夾就能在WWW自動找出index.html
像我的帳號是cloverhsc 就能在瀏覽器下打上http://www.xxx.xxx.xxx/~cloverhsc
出現在/home/cloverhsc/WWW/index.html的網頁了

留言