[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-users] mod_speling



> Where is the module mod_speling.c ? To activate it do I edit the
> /etc/httpd/conf/httpd.conf or another config file ?
>
> Is it possible to just turn the CheckSpelling directive to 'on'
>
> All I want to do is make the websites non case sensitive.

At the top of your httpd.conf file, uncomment/add (you may or may not need
to change the path):
  LoadModule speling_module     libexec/mod_speling.so

A little further down, uncomment/add the corresponding AddModule line:
  AddModule mod_speling.c

Then, either globally, within a specific VirtualHost, or within an
.htaccess, add:
  CheckSpelling on

Restart Apache.  If all goes well, mod_speling will now be enabled.

--
Brian Curtis