如何下载bash cgi标题http://?


0

在cgi bash中的某个时候能够通过http看到整个网址:

“$ VAR” $ HTTP_HOST $ REQUEST_URI   $ VAR = http://←我不记得因为它被称为显示http://的变量

我整日搜索,你怎么也不知道变量叫什么?


你的问题很难理解。也许看这里: web.archive.org/web/20100217120428/http://...
LawrenceC

RFC 3875'CGI版本1.1'没有定义这样的变量。你期望得到什么,除了 httphttps?检查是否存在 HTTPS var然后: [[ -v HTTPS ]]
Dmitry Alexandrov

Answers:


1

RFC 3875'CGI版本1.1'没有定义这样的变量。你期望得到什么,除了 http?如果 https,你必须检查是否存在 HTTPS 变量:

if [[ -v HTTPS ]]; then
    SCHEME='https://'
else
    SCHEME='http://'
fi
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.