Close

URL Matrix Parameters

[Last Updated: Mar 9, 2017]

Web 

Matrix parameters are alternative to Query parameters. Both can insert optional parameters in a URL.

Matrix Parameter format:
http://www.example.com/example-page;field1=value1;field2=value2;field3=value3

Query Parameter format:
http://www.example.com/example-page?field1=value1&field2=value2&field3=value3

Matrix Parameter is still in proposal state and is not a Web standard.

Other than format difference, Matrix parameter is more flexible, most importantly it can accept parameter anywhere in the path and not limited to the end:

http://www.example.com/example-page;field1=value1;field2=value2;field3=value3/other-example-page

See Also