您當前所在位置:
首頁 →
服務(wù)器 →
WEB服務(wù)器 →
個人主頁系統(tǒng)在Apache上的實現(xiàn)方法
個人主頁系統(tǒng)在Apache上的實現(xiàn)方法
時間:2015-06-28 00:00:00
來源:IT貓撲網(wǎng)
作者:網(wǎng)管聯(lián)盟
我要評論(0)
- 結(jié)合大家的經(jīng)驗和我自己的實踐,得到以下幾點在Apache上實現(xiàn)個人主頁系統(tǒng)的方法。(注意:我的測試環(huán)境如下:FreeBSD4.7+Apache2.0.43)
問題: Apache上的個人主頁系統(tǒng)
目的:
1.WEB:http://www.site.com/~username
2.FTP :/www/free/username/public_html
方法一:使用mod_userdir模塊
需要使用Apache 之中的userdir_module,
將
LoadModule userdir_module libexec/apache2/mod_userdir.so
之前的#去掉,
然后如下配置:
UserDir /www/free/*/public_html/
DirectoryIndex index.html
方法二:使用rewrite
需要使用Apache之中的rewrite_module,
將
LoadModule rewrite_module libexec/apache2/mod_rewrite.so之前的#去掉,
然后如下配置:
RewriteRule ^/~([0-9A-Za-z_\-]+)(.*) /wwww/free/$1/public_html$2
DirectoryIndex index.html
說明:
1.用戶的FTP可以使用任何FTP系統(tǒng)來指定其路徑為/www/free/username關(guān)鍵詞標簽:方法,實現(xiàn),系統(tǒng),個人主
相關(guān)閱讀
熱門文章
ISAPI Rewrite實現(xiàn)IIS圖片防盜鏈
IIS6.0下配置MySQL+PHP5+Zend+phpMyAdmin
在Windows服務(wù)器上快速架設(shè)視頻編解碼器全攻略
win2000server IIS和tomcat5多站點配置
人氣排行
XAMPP配置出現(xiàn)403錯誤“Access forbidden!”的解決辦法
WIN2003 IIS6.0+PHP+ASP+MYSQL優(yōu)化配置
訪問網(wǎng)站403錯誤 Forbidden解決方法
如何從最大用戶并發(fā)數(shù)推算出系統(tǒng)最大用戶數(shù)
Server Application Unavailable的解決辦法
報錯“HTTP/1.1 400 Bad Request”的處理方法
Windows Server 2003的Web接口
http 500內(nèi)部服務(wù)器錯誤的解決辦法(windows xp + IIS5.0)