模块的查看和加载请参考
http://eagleheart.blog.51cto.com/775380/1320812
url 忽略大小写的操作
在ubuntu中
a2enmod speling
vim apache2.conf
# Include module configuration:
Include mods-enabled/*.load
Include mods-enabled/*.conf
CheckSpelling on mod_speling
重启服务
在centos 中 vim httpd.conf
#LoadModule speling_module modules/mod_speling.so 前面的#星号去掉
<IfModule speling_module>
CheckSpelling on
</IfModule>
重启服务
转载于:https://blog.51cto.com/eagleheart/1320816