[#3AA0C70585231925B898662E494BB4F711529447]
Remove the origin component
url_base& remove_origin();
This function removes the origin, which consists of the scheme and authority.
assert( url( "http://www.example.com/index.htm" ).remove_origin().buffer() == "/index.htm" );
this->scheme_id() == scheme::none && this->has_authority() == false
Linear in `this->size()`.
Throws nothing.