Updating nginx file to redirect index.php to /
Redirect index.php to home
November 17, 2021 •
Code 💻
1 min read
Add this to nginx:
# Redirect url with /index.php to /
if ($request_uri ~* "^/index\.php(/?)(.*)") {
return 301 "/";
}
Code 💻
1 min read
Add this to nginx:
# Redirect url with /index.php to /
if ($request_uri ~* "^/index\.php(/?)(.*)") {
return 301 "/";
}