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 <
Hi I got the solution finally. Placed the below code in /etc/httpd/conf/httpd.conf
.
LoadModule speling_module modules/mod_speling.so
CheckSpelling On
CheckCaseOnly On
Then restart httpd:
sudo service httpd restart
And finally verify it is enabled:
sudo httpd -M | grep speling
That should yield speling_module (shared)
Thanks for the help for all..