Hi,
I've got a site where we're using mod_rewrite to tidy the URL. So that:
http://www.mysite.com/index.php?action=view&id=1
becomes:
http://www.mysite.com/view/1.php
Now that works fine. However, on a few pages a title is also passed (or an email on other pages) and I need to handle that. So something like:
http://www.mysite.com/index.php?action=list&id=1&title=hello
becomes:
http://www.mysite.com/list/hello/1.php
The first rule works fine, but adding another rule with the additional variable doesn't seem to work.
I've been through countless articles on the web and can't find the answer anywhere! Can anyone here point me in the right direction?
Thanks in advance for your help!
Cheers,
Kev