You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The initial portion of the request URL's “path” that corresponds to the application object, so that the application knows its virtual “location”. This may be an empty string, if the application corresponds to the “root” of the server.
47
-
CGI::SCRIPT_NAME=>'',
47
+
CGI::SCRIPT_NAME=>"",
48
48
49
49
# The remainder of the request URL's “path”, designating the virtual “location” of the request's target within the application. This may be an empty string, if the request URL targets the application root and does not have a trailing slash. This value may be percent-encoded when originating from a URL.
50
50
CGI::PATH_INFO=>request_path,
51
51
CGI::REQUEST_PATH=>request_path,
52
52
CGI::REQUEST_URI=>request.path,
53
53
54
54
# The portion of the request URL that follows the ?, if any. May be empty, but is always required!
# The initial portion of the request URL's “path” that corresponds to the application object, so that the application knows its virtual “location”. This may be an empty string, if the application corresponds to the “root” of the server.
43
-
CGI::SCRIPT_NAME=>'',
43
+
CGI::SCRIPT_NAME=>"",
44
44
45
45
# The remainder of the request URL's “path”, designating the virtual “location” of the request's target within the application. This may be an empty string, if the request URL targets the application root and does not have a trailing slash. This value may be percent-encoded when originating from a URL.
46
46
CGI::PATH_INFO=>request_path,
47
47
CGI::REQUEST_PATH=>request_path,
48
48
CGI::REQUEST_URI=>request.path,
49
49
50
50
# The portion of the request URL that follows the ?, if any. May be empty, but is always required!
0 commit comments