I have a site that does not use a friendly URL, my URL is like this link and it passes the parameters only I want the URL to be like this link in my htaccess to try to make friendly I did so:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /download/programa.php?id=$1&cat=$2&dev=$3 [L]
And how do I create the same condition for another page?