Mobile app version of vmapp.org
Login or Join
Gretchen104

: CheckCaseOnly doesn't work, while CheckSpelling does I'm trying to globally set CheckCaseOnly on to make my webservers folders case insensitive. It doesn't work though? I don't need it to correct

@Gretchen104

Posted in: #Apache2 #Ubuntu

I'm trying to globally set CheckCaseOnly on to make my webservers folders case insensitive. It doesn't work though?

I don't need it to correct spelling - thus I'm not using CheckSpelling.

Apache2.4 on Ubuntu.
mod_speling is enabled.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Gretchen104

1 Comments

Sorted by latest first Latest Oldest Best

 

@BetL925

Here is the mod_speling documentation. The CheckCaseOnly directive does not enable the module on its own. You would need to both turn on mod_speling and also put in the check case only directive:

CheckSpelling on
CheckCaseOnly on


When it is configured like this, mod_speling doesn't correct any spelling, it only corrects the case. This is a very awkward set of configuration directives. You might expect that this would check spelling as well, but it doesn't.

If you leave out the CheckSpelling on, the module isn't enabled and it can't correct spelling or case. If you leave out the CheckCaseOnly on, it corrects both spelling and case. It is only with both directives on that it doesn't check spelling but does correct for case.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme