Redirect in WordPress plugin

As in the documentation:

wp_redirect() does not exit automatically, and should almost always be followed by a call to exit;:

wp_redirect( plugin_dir_url(__FILE__) );
exit;