tags:

views:

516

answers:

3

When looking at a SSI printenv dump I see a variable URI_REQUEST.

When reading the Apache mod_include docs I see DOCUMENT_URI which they define as "The (%-decoded) URL path of the document requested by the user."

Anyone know the difference between the two?

TIA.

A: 

REQUEST_URI includes the Query String (?q=testing...) where DOCUMENT_URI does not.

Allain Lalonde
A: 

ok. seems like it is exactly the opposite according to Apache docs and RFC 2616.

REQUEST_URI does not contain the query string. DOCUMENT_URI does contain the query string.

cheers,

Rob

Rob Wells
A: 

This shouldn't have the SSIS tag. SSIS is a product from Microsoft. SQL Server Integration Services.

CodeRot