Is it possible to have two rules, with similar variables like this:
RewriteRule ^([^/]*)uct/([^/]*)\.php$ index.php?p=$1&name=$2
and
RewriteRule ^([^/]*)/([^/]*)\.php$ index.php?p=$1&type=$2
I need to rewrite both of these urls,
[
buschsystems.com...]
and
[
buschsystems.com...]
When I try, i'm only able to do one or tohe other... if I try to use both, the other stops working!
I've been searching for a few days but have been unable to find a solution.
Thanks!