I come back to you regarding ticket closed #30514
I have done some tests, and I have found something.
In file generated by admin tools nginx maker, if I remove red part below then URL works fine and I get www.example.com/index.php and not www.example.com/index.php?
Is it a bug?
# Allow access to /
location ~* ^/$ {
return 301 /index.php?$args;
}
# Disable access to everything else.
location ~* ^/.*$ {
# If it is a file, directory or symlink and I haven't deliberately
# enabled access to it, forbid any access to it!
if (-e $request_filename) {
return 403;
}
# In any other case, just treat as a SEF URL
try_files $uri $uri/ /index.php?$args;
}
##### Advanced server protection -- END