tags:

views:

5

answers:

1

Hello,

I would like to forward categories to index.php from root directory; Here is the example;

domain.com/en/category1/category2/ ---> index.php?lang=en&cat1=category1&cat2=category2

How can I do that?

A: 

Try this

RewriteEngine On
RewriteRule /([a-z]+)/([a-zA-Z0-9]+)/([a-zA-Z0-9]+).*  /index.php?lang=$1&cat1=$2&cat2=$3 [QSA,NC]
Gunjan
nope, doesn't work :(
she hates me
It should work. Where do you put the rewrite rule? If inside <Directory> or in a .htaccess you should remove the leading /
Artefacto