apache 忽略url 大小写设置

模块的查看和加载请参考

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>

重启服务


你可能感兴趣的:(apache,忽略url大小写设置)