Mod_Rewrite Need A LiL Help

advancedfuture

Junior Member
Joined
Oct 18, 2008
Messages
131
Reaction score
79
I am trying to rewrite

Code:
www.mydomain.com/services.php?st=California&city=Agoura%20Hills&services=Car%20Wash

so it shows up clean like maybe

Code:
www.mydomain.com/california/agoura-hills/car-wash

I'm so stuck, nothing i'm doing is working. Any help with mod-rewrite to get it to use clean URLs would be a HUGE help! And a HUGE thanks!
 
Ive tried

^(.*)/(.*)/(.*) services.php?st=$1&city=$2&services=$3

but I just keep getting a Error 400 error
blehhhh
 
.* matches all, including / (and the rest)

if ^(.*)/(.*)/(.*) services.php?st=$1&city=$2&services=$3 is your rewriting rule, then it is however wrong, should be something like
rewriterule REGEX_OLD NEW
 
Back
Top