htaccess Rewrite Rule - Allowing Capital Letters in URL
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 开发者_如何学Cany idea what I could add to make that work?
Thanks!
Add the [NC]
flag ("no case")
RewriteRule ^brand/([0-9a-zA-Z-]+)/?$ find_by_brand.php?brand=$1 [NC,L]
精彩评论