Initially i succeed to rewrite the url using id
with the htaccess code:
RewriteRule ^link/([0-9]+)\\.html$ sub_index.php?link_id=$1
Try:
RewriteRule ^link/([a-zA-Z0-9_- ]+)/([0-9]+)\.html$ sub_index.php?link_id=$2
However you should use rawurlencode when you output the title, in order for it to work properly on any kind of browser.