Updating nginx file to redirect index.php to /

A quick note about how to update nginx file to redirect to index.php

November 17, 2021 Code

Add this to nginx:

# Redirect url with /index.php to /
if ($request_uri ~* "^/index\.php(/?)(.*)") {
    return 301 "/";
}

Invely's