编辑htaccess使其不区分大小写

时间:2014-11-05 18:58:24

标签: php .htaccess url-rewriting

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

RewriteEngine on

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

我想让它不区分大小写。

请问您有什么想法吗?

1 个答案:

答案 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]