I am working on a WordPress website and I am finding the following problem.
After that I installed WP it is possible for me to access to my admin panel via the URL: https://MY-DOMAIN/wp-admin so I am correctly redirected to the admin panel.
The problem occurs when I click on any link in the admin menu I am redirected to URL like this: https://MY-DOMAIN/users.php that will return a 404 Not Found error.
This because the wp-admin prefix is missing. I was able to solve it manually adding it to the previopus url, basically changing it in the browser in something like this: https://MY-DOMAIN/wp-admin/users.php.
So it works, but it can be considered a temporary trick and I need to solve this problem. What could be the reason of this issue and how can I try to solve it?