Daily Archive for 十二月 6th, 2005

網頁存取安全機制

1.
在網頁目錄下建立 .htaccess 檔
設定以下參數

AuthUserFile /home/website/file.twku.net/.htpasswd
AuthGroupFile /dev/null
AuthName "TWKU Web File System"
AuthType Basic

<Limit GET>
    require valid-user
</Limit>

2.
利用 htpasswd 指令產生 .htpasswd 檔

3.
修改 httpd.conf 中該目錄的 參數

AllowOverride FileInfo AuthConfig Limit Indexes
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
    Order allow,deny
    Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
    Order deny,allow
    Deny from all
</LimitExcept>

如此在登入該網頁時便會要求輸入帳號密碼