0
I have a site that does not use URL friendly my URL this so http://site/download/program? id=1&cat=113&dev=1 and it passes the parameters only I want the URL to look like this http://site/download/Avast-free-Antivirus 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]
Here comes the problem with do so that when accessing by name is pulled id, the category and dev that and developer?
And how I create the same condition for another page?
has how to make dynamic the part of Rewriterule download/Avast-free-Antivirus? ie when I type in the url the value is passed to the download/Avast-free-Antivirus$ if I type in the url avg-Antivirus there should be so download/avg-Antivirus$
– diogo Dsa