Lintau.Com - Menurut dokumentasi file .htaccess .htaccess files (or "distributed configuration files") provide a way to make configuration changes per-directory basis. file, containing one or more configuration directives, is placed in a particular do*****ent directory, and the directives apply to that directory, and all subdirectories there of. Terjemahannya File .htaccess menyediakan jalan untuk merubah konfigurasi per directory. File tersebut terdiri dari satu atau lebih petunjuk konfigurasi yang ditempatkan pada directory tertentu, dan konfigurasi tersebut akan berdampak pada direktori dan subdirektori tersebut. Contoh Kasus Misalnya Anda ingin melindungi file Photo, dan hanya Anda sendiri yang ingin mengaksesnya. File Photonya ditaruh di /home/harinto/public_html/Photo/ Yang akan diakses dengan url http://pdg.asiamaya.net/~harinto/Photo/ Supaya direktori tersebut tidak bisa diakses, buat file .htaccess di direktori tersebut: > cd /home/harinto/public_html/Photo/ > touch .htaccess > touch .htpasswd > ll total 242 -rw-r--r-- 1 harinto harinto 149 Apr 19 088:19 .htaccess -rw-r--r-- 1 harinto harinto 26 Apr 19 08::20 .htpasswd -rw-r--r-- 1 harinto harinto 27571 Apr 1 006:05 FreeBSD.jpg edit .htaccess seperti contoh dibawah ini > ee .htaccess allow from all AuthType Basic AuthUserFile /usr/home/harinto/public_html/Photo/.htpasswd AuthName "Restricted Area Login" require user areksitiung Setelah selesai edit, kemudian save. Sekarang kita tinggal mengisi file .htpasswd tersebut dengan user dan passwordnya. Misalnya nama usernya : areksitiung, password : sitiung, cara mengisi file tersebut dengan: > /usr/local/httpd/bin/htpasswd -c /usr/home/harinto/public_html/Photo/.htpasswd areksitiung New password: Re-type new password: Adding password for user areksitiung hasilnya > cat .htpasswd areksitiung:id1W6c5ul4bvs id1W6c5ul4bvs adalah hasil enkripsi dari password "sitiung". Kemudian akses url http://pdg.asiamaya.net/~harinto/Photo Maka akan muncul kotak dialog yang menanyakan username dan password, isikan username areksitiung, password sitiung. Selamat Mencoba, semoga berhasil Regard's"