* <code><nowiki>web:create-url('http://find.me', map { 'q': 'dog' })</nowiki></code> returns <code><nowiki>http://find.me?q=dog</nowiki></code>
* <code><nowiki>web:create-url('search', map { 'year': (2000,2001), 'title':() })</nowiki></code> returns <code>search?year=2000&year=2001</code>
|}
==web:redirect==
{| width='100%'
|-
| width='120' | '''Signatures'''
|{{Func|web:redirect|$location as xs:string|element(rest:response)}}<br/>
|-
| '''Summary'''
|Creates a [[RESTXQ#Forwards and Redirects|RESTXQ redirection]] to the specified location. Redirects will only work if no other items are returned.
|-
| '''Examples'''
|The query <code><nowiki>web:redirect('/a/b')</nowiki></code> returns the following response element:
<pre class="brush:xquery">
<rest:response xmlns:rest="http://exquery.org/ns/restxq">
<http:response xmlns:http="http://expath.org/ns/http-client" status="302">
<http:header name="location" value="/a/b"/>
</http:response>
</rest:response>
</pre>
|}