Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Quote:
|
To me that says it should not matter.
|
Think resources conservations.
Limiting the parsing only to files with .php helps minimizing the impact on file that will not need to be parsed.
It's more a hint to the server saying "hey, that file here needs to be parsed", as opposed to "Check everything everywhere to find if you eventually have to do something".
When the servers gives 10'000~500'000 requests per days, it's nothing for him to parse everything.
Now, make that 1'000'000 requests per hour, and I can assure you that the time the web server takes to parse files that would not be needed can be used with much more efficiency elsewhere.
That's why apache can filter which files will go through the PHP engine.
And why the default is to send only the .php* files (php3, php4 and php5 should be interpreted too, I think)
__________________
Only a biker knows why a dog sticks his head out the window.
|