I'm using Joomla 1.5.21 with SEF Urls so my about page can be navigated to as about.html, etc. I'm also using Jumi to include some custom code to query some database tables and return results within the Joomla page.
From the results, a user can click for a single entry as a profile page.
What I want to do is to provide a search friendly URL for the profile page like this:
http://www.domain.com/profile/firstname.lastname/
I've been trying this: RewriteRule ^/profile/([^/])/([^/]) /profile.html?$1=$2 [PT]
(adapted from http://wiki.apache.org/httpd/RewriteQueryString) but I get a 404 error. However using /profile/ does work.
Any clues?
Thanks
Dan