I have this .htaccess
RewriteEngine On
RewriteRule ^([0-9A-Za-z]+)/([0-9A-Za-z]+) index.php?category=$2&language=$1&id=$3
RewriteCond %{HTTP_USER_AGENT} libwww [NC,OR]
RewriteCond %{QUERY_STRING} ^(.*)=http [NC]
RewriteRule ^(.*)$ – [F,L]
Options +FollowSymLinks
RewriteRule ^(.*)$ http://www.mydomain.com/$1 [L,R=301]
What I am trying to achive is to pass all variables but it seems that I cannot do that. I am quite new in .htaccess stuff so the code might be nonsense. However, I have managed to pass the category and language, but can pass the id.
Thanks