I had successfully re-written almost all my urls from the old form to fine url using .htaccess rules. But I have a problem with some of the address formats
e.g example.com/myusername works fine while example.com/my.username throws back a 404 page not found
Note: my.username is a valid username in my database. Please how do I resolve this issue
Update: this is the complete code on the .htaccess file
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
#ErrorDocument 404 example.com
RewriteEngine on
RewriteRule ^(.*)\.htm$ $1.php [nc]
RewriteRule ^([a-zA-z0-9_-]+)$ community/profile.php?_username=$1