I'm trying to rewrite a URL of www.somesite.com/BEARS to www.somesite.com/bears. I'm having an issue in that I don't want all my URLs lowercase right now so I just want to do it on this one.
Also www.somesite开发者_运维问答.com/bears is actually rewriting to bears.php?page=bears.
I just can't think of a way to do this correctly.
I've tried
RewriteRule ^/BEARS$ /bears [PT]
RewriteRule ^/BEARS$ /bears.php?page=bears
That doesn't work
Figured it out here is my solution.
RewriteRule ^BEARS bears.php?page=bears [NC,L]
Apparently the forward slash was throwing me off
精彩评论