我必须使网址不区分大小写。这意味着我必须工作http://www.test.com/About.php和http://www.test.com/about.php .. 我尝试了下面的代码.但它不起作用。它显示索引页面。即,它显示索引页面的内容
#Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]