I got the following modrewrite script:
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)/(.*)$ product.php?categorie_url=$1&product_url=$2
THIS ONE ABOVE IS WORKING: -> domain.com/korsetten/school-girl
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)$ categorie.php?categorie_url=$1
THIS ONE ABOVE IS NOT WORKING: -> domain.com/korsetten
The whole .htaccess file:
RewriteEngine on
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)/(.*)$ product.php?categorie_url=$1&product_url=$2
RewriteCond %{ENV:space_replacer} !^$
RewriteRule ^.*$ %{ENV:space_replacer}
RewriteRule (.*)$ categorie.php?categorie_url=$1
Can someone explain me what i am doing wrong for the Categories pages?