hi,
i got this url:
www.world-status.com/&page=2
how can i make it like that:
www.world-status.com/page/2
i got this at the moment:
RewriteRule ^([^/.]+)/?$ /index.php?cat_id=$1
RewriteCond %{HTTP_HOST} ^world-status.com
RewriteRule (.*) [
world-status.com...] [R=301,L]
RewriteCond %{THE_REQUEST} \/index.php\ HTTP [NC]
RewriteRule (.*)index.php$ /$1 [R=301,L]
thanks