I have 2 rules set in .htaccess
RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ page.php?name=$1&do=$2&newstitle=$3 [L]
RewriteRule ^([^/]*)/([^/]*)/([^/]*)\.html$ page.php?name=$1&do=$2&cattitle=$3 [L]
and this is how I call the url:
www.domain.com/My-Page/news/News-Title.html
www.domain.com/My-Page/category/Category-Title.html
and without mod rewrite:
www.domain.com/page.php?name=My-Page&do=news&newstitle=News-Title
www.domain.com/page.php?name=My-Page&do=category&cattitle=Category-Title
Now the problem is since both of the rules are similar, it always reverts to first rule, no matter what. If I remove the first rule, the second url works fine, but with both of them it always rewrites the first rule only.
How can I achieve this with both rules working. I know I'm missing something, but my expertise are limited when it comes to mod_rewrite.
Any help is much appreciated.