apache虛擬目錄的創建及身份驗證功能的開啟
阿新 • • 發佈:2018-08-27
test err mark 分享圖片 options ref lin conf 網頁 apache虛擬目錄的創建及身份驗證功能的開啟
AllowOverride None
AuthName "hello"
authtype basic
authuserfile /etc/httpd/user
require Valid-user
</Directory>
echo "this is vdir test" > /opt/test/index.html //在opt/test/ 創建網頁"this is vdir test"
客戶端訪問服務端IP:http://192.168.10.10/test/
虛擬目錄創建成功
2.開啟身份驗證功能
htpasswd -c /etc/httpd/user baixiaosheng //創建虛擬用戶baixiaosheng,並設置密碼
vim vuser.conf
service httpd restart //重啟服務
客戶端再次訪問服務端
需驗證身份才能訪問站點
實驗環境:服務端:centos6.5 IP192.168.10.10
客戶端:win7
1.echo "test01" > /var/www/html/index.html //將首頁改為test01
vim /etc/httpd/conf/httpd.conf
//添加可識別網頁文件類型
vim vuser.conf //自定義創建虛擬目錄
Alias /test "/opt/test"
<Directory "/opt/test/">
Options Indexes MultiViews FollowSymLinks
AuthName "hello"
authtype basic
authuserfile /etc/httpd/user
require Valid-user
</Directory>
echo "this is vdir test" > /opt/test/index.html //在opt/test/ 創建網頁"this is vdir test"
客戶端訪問服務端IP:http://192.168.10.10/test/
虛擬目錄創建成功
2.開啟身份驗證功能
htpasswd -c /etc/httpd/user baixiaosheng //創建虛擬用戶baixiaosheng,並設置密碼
service httpd restart //重啟服務
客戶端再次訪問服務端
需驗證身份才能訪問站點
apache虛擬目錄的創建及身份驗證功能的開啟