I have problem when using htaccess rewriteurl
, it was stacking every I change the page,
I try this one :
Options +FollowSymlinks
RewriteEngine On
RewriteRule ^category/([^/]*)/([^/]*)$ /test/category.php?k=$1&page=$2 [L]
change this
http://localhost/test/category.php?k=fashion&page=2
become like this
http://localhost/test/category/fashion/2
the problem occure when i'm going to page 3
URL become like this
http://localhost/test/category/fashion/category/fashion/3
so on...
switch page to page 4
http://localhost/test/category/fashion/category/fashion/category/fashion/3
why is this looping?
what's wrong with my code??