0

如何使用 .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>
4

1 回答 1

0

您需要先启用模块 ( mod_speling) 才能工作...

假设您使用的是 Ubuntu,请从命令提示符运行:

sudo a2enmod speling
sudo service apache2 reload
sudo service apache2 restart
于 2013-10-16T03:14:07.147 回答