add URI to request
How do I add a URI suffex to an HTTPS request using aFlex?
https://domain.com (add /page/page1.htm)
https://domain.com/page.page1.htm
https://domain.com (add /page/page1.htm)
https://domain.com/page.page1.htm
Tagged:
0
Comments
# transparently insert "/page.page1.htm" if not already present
if {not ([HTTP::uri] starts_with "/page.page1.htm")} {
HTTP::uri /page.page1.htm[HTTP::uri]
}
}