htaccess 重写规则 - 允许 URL 中使用大写字母
我有以下重写规则:
RewriteEngine On
RewriteRule ^brand/([0-9a-zA-Z-]+)/?$ find_by_brand.php?brand=$1
RewriteCond %{THE_REQUEST} find_by_brand\.php
RewriteRule ^find_by_brand\.php - [F]
如果我去 /Michelin/ 以及 /michelin/ 我希望它能够工作
有谁知道我可以添加什么让它发挥作用?
谢谢!
I have the following Rewrite Rule:
RewriteEngine On
RewriteRule ^brand/([0-9a-zA-Z-]+)/?$ find_by_brand.php?brand=$1
RewriteCond %{THE_REQUEST} find_by_brand\.php
RewriteRule ^find_by_brand\.php - [F]
I want it to be able to work if I go to /Michelin/ and also /michelin/
Does anyone have any idea what I could add to make that work?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
[NC]
标志(“无大小写”)Add the
[NC]
flag ("no case")