- 工信部备案号 滇ICP备05000110号-1
- 滇公安备案 滇53010302000111
- 增值电信业务经营许可证 B1.B2-20181647、滇B1.B2-20190004
- 云南互联网协会理事单位
- 安全联盟认证网站身份V标记
- 域名注册服务机构许可:滇D3-20230001
- 代理域名注册服务机构:新网数码
Linux 下 Apache 忽略网站 URL 的大小写的方法
大家都知道 Linux 服务器访问路径都是区分大小写的,那么搭建了 Apache 后访问 www.landui.com/INDEX.html 和 www.landui.com/index.html访问到的路径是不一样的
要解决这个问题,需要使用使用 Apache 的 mod_speling 模块。
编译安装 Apache 时把 mod_speling 模块也编译了,如
./configure --prefix=/usr/local/apache2 --enable-so --enable-speling
修改 Apache 的配置文件 httpd.conf,加上:
LoadModule speling_module modules/mod_speling.so CheckSpelling On
这样就启用了 mod_speling 模块。
售前咨询
售后咨询
备案咨询
二维码
TOP