Nginx: Call php without extension

PHOTO EMBED

Mon Aug 29 2022 18:45:16 GMT+0000 (Coordinated Universal Time)

Saved by @marcopinero #php #nginx

server{
    :
    
    location /api {
        rewrite ^/api/(.*)$ /api/$1.php last;
        return 404;
    }
    
    :
}
content_copyCOPY

Configuration in nginx to call php scripts without using .php extension at URI.