I have generated this type url in my web site.
http://example.com/?page_id=30
Change in to like this type
http://example.com/features/
So, how can i change it in wordpress htaccess using.
This web site is working in to local host perfectly good.But not live.
You could do it with some 301 redirects in your .htaccess. It could look like:
As per your comment you might getting 404 error after change permalink structure from wordpress admin because I think you are missing mod_rewrite in .htaccess ,
Please add following code in your root .htaccess file and then change permalink from admin panel :
If you have already added above code even though getting error then do below setting :
1 – Go to apacheconfhttpd.conf file
2 – Find for line #rewrite_module modules/mod_rewrite.so
3 – Remove # from above line , Save file and restart your server.
I am sure it will work.