Currently i'm working on this. I would like to change my url from
http://www.demo.com/userhome.php?view=prsnl_pge&pge_id=12
to
http://www.demo.com/(value of page id)
Currently i'm working on this. I would like to change my url from
http://www.demo.com/userhome.php?view=prsnl_pge&pge_id=12
to
http://www.demo.com/(value of page id)
Specifically for your condition please try it like this in root .htaccess,
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([\w-]+)$ userhome.php?view=prsnl_pge&pge_id=$1 [L]