htaccess 的使用基本小節 For apache httpd

Apache 手冊

htaccess 的使用基本小節 For apache httpd

  1. .htaccess的基本做用html

           .htaccess是一個純文本文件,它裏面存放着Apache服務器配置相關的指令。
           .htaccess主要的做用有:URL重寫、自定義錯誤頁面、MIME類型配置以及訪問權限控制等。主要體如今僞靜態的應用、圖片防盜鏈、自定義404錯誤頁面、阻止/容許特定IP/IP段、目錄瀏覽與主頁、禁止訪問指定文件類型、文件密碼保護等。
           .htaccess的用途範圍主要針對當前目錄。apache

  2. 啓用.htaccess的配置
    httpd.conf:
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    </Directory>
    改成:
    <Directory />
    Options FollowSymLinks
    AllowOverride All
    </Directory>
    

      

  3. .htaccess  白名單配置
    使用命令建立 .htpasswd 文件 
      htpasswd -c .htpasswd 用戶名
    更新 .htpasswd 文件
      htpasswd .htpasswd 用戶名
    AuthUserFile /Users/jerryxu/wwwroot/cache/server/backup/1115just4/.htpasswd
    AuthName "Restricted Access"
    AuthType Basic
    require user 用戶名
    ###### deny from ip
    

      require user 用戶名 = require valid-user [用戶名]bash

      

  4. 更多可參考;blog.csdn.net/cmzhuang/article/details/53537591
相關文章
相關標籤/搜索