What's the difference between:
RewriteCond %{ENV:REDIRECT_STATUS} 200
RewriteRule ^ - [L]
and this one:
RewriteCond %{ENV:REDIRECT_STATUS} ^.
RewriteRule ^ - [L]
It happened that this last one used to work just fine for a long time, until suddenly it stopped working causing Apache to show the directory listing! The first one solved the issue. So what's wrong with the second one?
Thank you