For example:
http://domain.com/comments?p=73819
becomes
http://domain.com/comments/73819
.
How can I do this in my .htaccess file?
Try:
Options -Multiviews
RewriteEngine On
RewriteCond %{THE_REQUEST} \ /comments\?p=([0-9]+)
RewriteRule ^ /comments/%1? [L,R]
RewriteRule ^comments/([0-9]+)$ /comments?p=$1 [L]