When apache receives a request for *.php, does it immediately hand it over to FPM or does it judge that it is not a 404 and then hand it over to FPM? php
曾经蜡笔没有小新2017-06-29 10:08:46
0
2
714
Apache receives a *.php request, does it immediately hand it over to FPM, or does it judge that it is not a 404 and then hand it over to FPM?
apache does not use php-fpm, nginx and php will use php-fpm
apaheHow to determine if apache is a 404?