作为草根程序员在调试程序的时候难免会出现因为程序中有大小写的原因而让linux服务器无法运行而直接输出的尴尬,这里简单介绍一下处理apache的方法和心得:
在linux下,路径是区分大小写的,今天我们来把它改成不区分大小写的方法吧,有需要的朋友可以参考一下。
http.conf
加载mod_speling模块:
sudo ln -s /etc/apache2/mods-available/speling.load /etc/apache2/mods-enabled/speling.load
开启模块:CheckSpelling on
重启apache
这样改一下就正常了。
shell大小写转换:http://www.linuxdiyf.com/linux/14406.html
find命令不区分大小写:http://www.linuxdiyf.com/linux/13964.html
Linux终端忽略大小写:http://www.linuxdiyf.com/linux/13809.html
Ubuntu中字符串匹配中大小写不分:http://www.linuxdiyf.com/linux/3663.html