Solve the problem of case sensitivity of Linux+Apache server URL

Solve the problem of case sensitivity of Linux+Apache server URL

I encountered a problem today. When entering the URL address in the browser address bar, it must be case-sensitive to access the page normally. The website server is Linux+Apache

The main reason for this phenomenon is the lack of speling module, so just load it in the corresponding system.

1. Debian system

Relatively simple under Debian system

1. Find speling.load from the path /etc/apache2/mods-available and copy it to the path /etc/apache2/mods-enabled

2. Write the file speling.conf to the directory /etc/apache2/mods-enabled

The content of speling.conf is very simple. I only wrote the following line:

CheckSpelling on

3. Add speling.load and speling.conf to /etc/apache2/mods-enabled and restart Apache.

2. CentOS system

It's a little annoying under centos system.

1. Check whether the system has the module mod_speling.so , path: /etc/httpd/modules ; if it does, just pass it, if not, download one from somewhere else and use it

2. Load this module

vi /etc/httpd/conf/httpd.conf

In the module loading area, add the following line:

LoadModule speling_module modules/mod_speling.so
CheckSpelling on

Save changes and exit

Restart Apache and enter the URL again. This time it is case insensitive and can be accessed normally.

You may also be interested in:
  • Steps to build a file server using Apache under Linux
  • Analysis of the implementation method of Nginx and Apache coexistence under Linux server
  • 8 Security Tips for Linux Apache Web Server Security
  • Deploy Python's Django project to Apache server under Linux
  • View Apache Server Error Log on Linux System
  • Linux installation apache server configuration process

<<:  Detailed explanation of generic cases in TypeScript

>>:  A brief analysis of the usage of USING and HAVING in MySQL

Recommend

How to delete a MySQL table

It is very easy to delete a table in MySQL, but y...

How to count down the date using bash

Need to know how many days there are before an im...

Summary of several common logs in MySQL

Preface: In the MySQL system, there are many diff...

jQuery clicks on the love effect

This article shares the specific code of jQuery&#...

How to package the uniapp project as a desktop application

Installing Electron cnpm install electron -g Inst...

Let’s talk in detail about how browsers view closures

Table of contents Preface Introduction to Closure...

MySQL slow query optimization: the advantages of limit from theory and practice

Many times, we expect the query result to be at m...

Teach you step by step to develop a brick-breaking game with vue3

Preface I wrote a few examples using vue3, and I ...

Some CSS questions you may be asked during an interview

This article is just to commemorate those CSS que...

Detailed steps to install Docker 1.8 on CentOS 7

Docker supports running on the following CentOS v...

Learn asynchronous programming in nodejs in one article

Table of Contents Introduction Synchronous Asynch...

MySQL 5.6 compressed package installation method

There are two installation methods for MySQL: msi...