How do I make URLs case insensitive in Linux server

后端 未结 4 1762
被撕碎了的回忆
被撕碎了的回忆 2020-12-05 05:17

I am working a website which is deployed on a Linux server. I have small changes to do on that. I have folder read. The requirement is that if I enter the URL <

4条回答
  •  囚心锁ツ
    2020-12-05 06:04

    First install speling_module. Then include LoadModule speling_module modules/mod_speling.so in httpd.conf file and then include

    
         CheckSpelling On
         CheckCaseOnly On
    
    in httpd.conf, then restart httpd service using service httpd restart command.

提交回复
热议问题