how do i change permalink of my url
http://www.example.com/index.php?id=230
to
See e.g. ".htaccess fix for a pretty permalink in PHP?". Also, you should be able to find loads of tutorials for mod_rewrite
(and related questions).
Try out:
RewriteRule ^index/([0-9]+)$ index.php?id=$1 [QSA,L]
You can use generateit to create rewrite rule for apache and if you use nginx then use gdix to convert apache .htaccess rule.