Click to See Complete Forum and Search --> : RewriteRule Help


h3r0
11-15-2008, 08:06 PM
Hello,

I'm trying to do the following:

client.dcd -> client.php [works]
client.dcd?action -> client.php?act=action

This is what I have so far, but it is not working:
RewriteRule ^client.dcd /client.php
RewriteRule ^client.dcd?([a-z]+) /client.php?act=$1

Any ideas on a fix?