如何使用 .htaccess 使 Apache 不区分大小写?
问题:如果我尝试使用大写字符串而不是小写字符串访问同一页面,则它无法按预期工作。
我已经阅读了其他帖子,但仍然无法正常工作?如果有人可以提供帮助,将不胜感激!我的.htaccess
文件:
Options +FollowSymlinks
Options -Indexes
AddType text/x-component .htc
<IfModule mod_speling.c>
CheckSpelling on
</IfModule>
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [NC,QSA,L]
</IfModule>