RewriteEngine On
RewriteRule ^(.*)$ index.php?req=preview&pro_name=$1
That should (probably) do the trick. You should create a good structure for your URLs if you want to have URLs for anything else than pro_names.
/person/Rehman1234
/blabla/somethingelse
RewriteRule ^person/(.*)$ index.php?req=preview&pro_name=$1
RewriteRule ^blabla/(.*)$ index.php?req=blabla&value=$1
Please see http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html for more info on how mod_rewrite works