Performance Tuning PHP |
|
2024-11-22 |
|
|
12 |
|
|
Virtually any webpage is the combination of dynamic (php) and static content (images, CSS, JavaScript, etc...)
For maximum performance it is best to separate the serving of dynamic and static content.
Benefits
- • Ability to disable KeepAlive for server handling dynamic data.
- • Simpler and Faster serving numerous static requests.
- • Allow more complex configuration (.htaccess, mod_rewrite) for dynamic data without affecting static content
- • Easy distribution of the content serving load across servers.