编辑htaccess使其不区分大小写


edit htaccess to make it case insensitive

用于URL重写的实际.htaccess区分大小写:

RewriteEngine on
RewriteRule ^([a-zA-Z_0-9]+)/([a-zA-Z_0-9]+)$ /BB/index.php?controller=$1&action=$2

我想不区分大小写。

你有个主意吗?

为了使其不区分大小写,您可以在以下行的末尾添加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]