I cannot get my SEO friendly url work
I am trying to change my dynamic urls to seo friendly url using htaccess mod_rewrite.
My current url: http://app255.net/categories.php?cat=1&cname=shopping
My terget: http://app255.net/category/1/shopping (I can't reach here).
Here is my rewrite rule that I doesn't work
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^category/([0-9]+)/([a-zA-Z]+)/$ categories.php?cat=$1&cname=$2
What do I do wrong ? Any help will be much appreciated.
My current url: http://app255.net/categories.php?cat=1&cname=shopping
My terget: http://app255.net/category/1/shopping (I can't reach here).
Here is my rewrite rule that I doesn't work
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteRule ^category/([0-9]+)/([a-zA-Z]+)/$ categories.php?cat=$1&cname=$2
What do I do wrong ? Any help will be much appreciated.