我在 apache 中建立了基本授权。在 .Only 中只有一行/var/www/html/remote.html
。
<p>it is a test </p>
现在用 curl 验证用户名和密码。
curl -u xxxx:xxxx -v http://111.111.111.111/remote.html
* Trying 111.111.111.111...
* TCP_NODELAY set
* Connected to 111.111.111.111 (111.111.111.111) port 80 (#0)
* Server auth using Basic with user 'xxxx'
> GET /remote.html HTTP/1.1
> Host: 111.111.111.111
> Authorization: Basic dGVzdHBhc3M6MTIzNDU2Nzg=
> User-Agent: curl/7.52.1
> Accept: */*
>
< HTTP/1.1 200 OK
< Date: Fri, 07 Sep 2018 03:32:42 GMT
< Server: Apache/2.4.6 (CentOS)
< Access-Control-Allow-Origin: *
< Access-Control-Allow-Methods: POST, GET, PUT, DELETE, OPTIONS
< Access-Control-Allow-Credentials: true
< Access-Control-Allow-Headers: Authorization,DNT,User-Agent,Keep-Alive,Content-Type,accept,origin,X-Requested-With
< Last-Modified: Fri, 07 Sep 2018 03:22:41 GMT
< ETag: "b2-5753f8537e26c"
< Accept-Ranges: bytes
< Content-Length: 178
< Content-Type: text/html; charset=UTF-8
<
<p>it is a test </p>
* Curl_http_done: called premature == 0
* Connection #0 to host 111.111.111.111 left intact
在浏览器中输入http://111.111.111.111/remote.html?username=xxxx&password=xxxx
,弹出授权窗口。
url中包含正确的用户名和密码,通过curl验证,为什么不能直接显示remote.html?
为什么我的 urlhttp://111.111.111.111/remote.html?username=xxxx&password=xxxx
不能向 apache 服务器提供授权信息?
HTTP 基本身份验证凭据在特定标头中从客户端发送到服务器 - 它们不会以这种方式附加到 URL。您可以通过注意这一点来验证这一点
也不起作用 - 标志知道以不同的方式发送它,当您将凭据输入提供的表单时,
-u
您的浏览器也会这样做。基本认证的 URL 是
使用以下并检查其他答案以及如何输入登录 CLI