Install nginxnginx download in : http://nginx.org/en/download.html ; v1.15.5Extract to "C:\Dev\nginx-1.15.5" Eidt nginx.conf for php7 : "C:\Dev\nginx-1.15.5\conf\nginx.conf" # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; incl..