开发者

Mod Rewrite from Uppercase

开发者 https://www.devze.com 2023-04-02 00:27 出处:网络
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.

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

0

精彩评论

暂无评论...
验证码 换一张
取 消