Does WP always makes 301 redirection?

Yup, that is very normal.

If you don’t want WP to redirect anything. Simply remove the action by adding this code into your working template functions.php file.

remove_action( 'template_redirect', 'redirect_canonical' );

That will deactivate the redirections, all of them.