I have this file rewrite.htaccess file in my web site directory,
to take a query string and change it to a cleaner URL for search engines, but it doesn't seem to be doing anything at all. Here is what I have so far:
RewriteEngine on
RewriteRule hobby/([A-Za-z]+)/([0-9]+)/([0-9]+)$ t5.php?q=$1&affinity_id=$2&f=$3
Any suggestions?