我用于URL重写的实际.htaccess是区分大小写的:
RewriteEngine on
RewriteRule ^([a-zA-Z_0-9]+)/([a-zA-Z_0-9]+)$ /BB/index.php?controller=$1&action=$2
我想让它不区分大小写。
请问您有什么想法吗?
答案 0 :(得分:1)
要使其不区分大小写,您可以在该行的末尾添加NC
标志:
http://httpd.apache.org/docs/2.2/rewrite/flags.html#flag_nc
RewriteEngine on
RewriteRule ^([a-zA-Z_0-9]+)/([a-zA-Z_0-9]+)$ /BB/index.php?controller=$1&action=$2 [NC]