I'm trying to make firendly urls. My site url is:
domain.pl/index.php?str=prod_big&idk=869&kat=
My .htaccess code is:
RewriteCond %{HTTP_HOST} !^domain\.pl$
RewriteRule ^(.*) http://domain.pl/$1 [R=301,L]
RewriteEngine On
RewriteRule ^([^/]*)/([^/]*)\.html$ /index.php?str=$1&idk=$2&kat= [L]
But after visiting:
nothing happens. What should i do more ?