I was having issues getting this working 2 years ago and through posting in here, got it resolved...
Now I have another related question to the same rewrite code...
I haven't ever run into this issue til now, so didn't realize it existed...
I need the rewrite rule to be case insensative... so any combination of the letters whether capitals or lower case will yield the same results...
I thought that is what the NC was supposed to do in the 3rd line, but it doesn't.
From Apache.org
Use of the [NC] flag causes the RewriteRule to be matched in a case-insensitive manner. That is, it doesn't care whether letters appear as upper-case or lower-case in the matched URI.
Any suggestions on how to make that happen?
Here is the code I use now.
php_value session.gc_maxlifetime 14400
RewriteEngine On
RewriteRule ^([a-z0-9]+)$ /index.php?m=$1 [NC,L] # captures member username no case last rule
ErrorDocument 404 http://www.domainname.com/contactsupport.php
Thanks in advance for any feedback.
Douglas