Please would someone explain in simple terms what these rules are doing:
RewriteEngine on
RewriteRule .* - [E=HTTP_IF_MODIFIED_SINCE:%{HTTP:If-Modified-Since}]
RewriteRule .* - [E=HTTP_IF_NONE_MATCH:%{HTTP:If-None-Match}]
|
Please would someone explain in simple terms what these rules are doing:
| |||
|
feedback
|
|
It's matching any input ( Basically it's just pulling some HTTP Header information and putting it in Environmental variables, presumably for future logic to take some action dependent on the variables. | |||||||
feedback
|