Does anyone knows when IS_SUBREQ variable is "true"? Everything, that i've tried, gave me only "false".
Info from apache docs
IS_SUBREQ Will contain the text "true" if the request currently being processed is a sub-request, "false" otherwise. Sub-requests may be generated by modules that need to resolve additional files or URIs in order to complete their tasks.
Could anyone show me some example when IS_SUBREQ is "true"?
Some of what i tried: subreq.php - page with only
Testing browser's subrequest for image (I know that server doesn't care about it, but tried)
RewriteCond %{IS_SUBREQ} true
RewriteRule (.*)\.png$ null
Testing internal redirects
RewriteRule subreq\.php$ \tmp
RewriteCond %{IS_SUBREQ} true
RewriteRule tmp$ /index.html
No effect.