[[email protected] abc.com]# /usr/local/apache2.4/bin/htpasswd -c -m /data/.htpasswd aming
New password:
Re-type new password:
Adding password for user aming
[[email protected] abc.com]# cat /data/.htpasswd
aming:$apr1$zwiDnzEZ$JSD12PoIVH90Sry//fz3T.
[[email protected] abc.com]# /usr/local/apache2.4/bin/htpasswd -m /data/.htpasswd zhangsan
New password:
Re-type new password:
Adding password for user zhangsan
[[email protected] abc.com]# cat /data/.htpasswd
aming:$apr1$zwiDnzEZ$JSD12PoIVH90Sry//fz3T.
zhangsan:$apr1$Arll9KtL$REiXaDWcbNP8q6pEJnaMW/
[[email protected] ~]# curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com -I
HTTP/1.1 200 OK
Date: Fri, 02 Mar 2018 00:17:49 GMT
Server: Apache/2.4.29 (Unix) PHP/5.6.30
X-Powered-By: PHP/5.6.30
Content-Type: text/html; charset=UTF-8
[[email protected] ~]# !curl
curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com -I
HTTP/1.1 200 OK
Date: Fri, 02 Mar 2018 00:27:46 GMT
Server: Apache/2.4.29 (Unix) PHP/5.6.30
X-Powered-By: PHP/5.6.30
Content-Type: text/html; charset=UTF-8
[[email protected] ~]# curl -x127.0.0.1:80 -uaming:lizhipeng1204 111.com/123.php
123.php[[email protected] ~]#
[[email protected] ~]# /usr/local/apache2.4/bin/apachectl -M |grep rewrite
[[email protected] ~]# vi /usr/local/apache2.4/conf/httpd.conf
[[email protected] ~]# /usr/local/apache2.4/bin/apachectl -t
Syntax OK
[[email protected] ~]# /usr/local/apache2.4/bin/apachectl graceful
[[email protected] ~]# /usr/local/apache2.4/bin/apachectl -M |grep rewrite
rewrite_module (shared)
原文地址:https://www.cnblogs.com/sisul/p/8495492.html