1、用yum装好httpd
2、用命令:vi /etc/httpd/conf/httpd.conf
配置好 DocumentRoot "/cpcnet/products/services/web"
写上:
#
# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives. See also the AllowOverride
# directive.
#
AccessFileName .htaccess
3、在/cpcnet/products/services/web目录下放.htpasswd 和 .htaccess文件
4、htpasswd内容如下
netswofdrk:bc5qdfdgmu7pdmjYc22
#(用户名:密码)
5、.htaccess内容如下
AuthType Basic
AuthUserFile /cpcnet/products/services/web/.htpasswd
AuthName "ManagedCONNECT Revamp Configuration Page"
require valid-user
satisfy all
6、访问效果