How can I turn a url with get method as a clean url with segment as the get method?

I got it

function rewrite_profile() {
  add_rewrite_rule('^profile/([0-9]+)/?', 'profile/?id=$matches[1]', 'bottom');
}
add_action('init', 'rewrite_profile');

I still don’t know if this is the right way.