Remove the field for the "URL" so it will not be submitted.
2. To disable posting a URL on the backend:
Edit the file: mt/lib/MT/App/Comments.pm
find this line:
if ($comment->url) {
(around line 275)
Comment out the entire block and leave this as the final code:
if ($comment->url) { return $app->handle_error($app->translate( "Invalid URL '[_1]'", $comment->url)); }
This will return an error if someone tries to pass in a url at all. Since most spam bots are interested in posting a URL, this should effectively block them.