How to remove additional url?

You can try to add below statement to .htaccess:-

RewriteEngine On
RewriteCond %{QUERY_STRING} .
RewriteRule ^([^.]*)$ /$1? [L,NE,R=301]

Note: This method will erase all GET parameters. In case you want to install plugins or scripts, to your website, and they will not work, I recommend removing the content (Code Snippet) from your .htaccess document.