It's the first time I have to work with .htacces to make friendly URLs. With the following code I have been able to make this URL link become link
Options -MultiViews
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-zA-Z0-9/]+)$ index.php?c=$1 [L]
But, currently I have not been able to make it work for a second and third variable. For example with this URL link . How can it be done?