Signature
String request_script_url(Request& context)
Returns the request script URL from DOCUMENT_URI / SCRIPT_NAME, canonicalizing a front-controller URL ending in /index.uce to the containing directory URL.
Example
print(request_script_url(context) != "" ? "script url\n" : "empty\n");
Output
script url