I'm studying friendly URLs, and in many instances I came across these two forms of writing:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
and
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
What's the difference between them? Looking at the Apache documentation I understood that they are the same thing. Did I get it right?