2011年9月20日 星期二

心得 PHP htaccess 及.htpasswd 帳號登入設定

感覺用起來 htaccess 就像是一個 filter. 不過預設不一定是會開啟支援的,至少 WAMP 我安裝後是沒有的。


  •  要使用的話必須確認 在 httpd.conf 中 mod_rewrite.so 有無開啟 詳細可以參考[1],或google 一下 'htaccess PHP'。


  •           至於要設定密碼的話, 在 .htaccess  設定, 可以參考[2]:

  

  AuthName 'My Test'
  AuthType Basic
  AuthUserFile E:/wamp/ServerPass/.htpasswd 
  require valid-user

          注意  .htpasswd 這裡要用絕對路徑比較簡單, 至於密碼的話 加密可以在 google 一下



  •  .htpasswd 的密碼格式 ,如
    • admin:123456789         

    

 參考:
[1]: 檢測.htaccess 是否啟用, PHP 程式 學習 筆記本
[2]: WAMP - .htaccess & .htpasswd

沒有留言: