Apache has mod_speling for automatic URL spell-correction. For example when on this site you can request the page using following format:
http://cyberciti.biz/news is same as use URL http://cyberciti.biz/news.php.
This module help visitor to get correct content instead of error 404 – document not found and you can also omit file extension such as .pl, .php, .html etc in urls references. It attempts to correct misspellings of URLs that users might have entered, by ignoring capitalization and by allowing up to one misspelling. This must be configured on massive web hosting server by ISP and web hosting service providers so the hosting customer can take advantage of this module.
Following steps demonstrates how to activate this module under Debian GNU/Linux:
A) Open your Apache modules configuration file:
# vi /etc/apache-perl/modules.conf
B) Append following line to this file:
LoadModule speling_module /usr/lib/apache/1.3/mod_speling.so
C) Save the file.
D) This module need to be configured via httpd.conf via CheckSpelling directive. You can configure it for entire site, particular virtual host or even via .htaccess file. Open your /etc/apache-perl/httpd.conf and add followint line in server config context:
CheckSpelling on
E) Restart the apache:
# /etc/init.d/apache-perl restart
Please note that above steps are same under FreeBSD/Solaris for Apache web server except for file location i.e. httpd.conf and modules.conf. Please refer man page for more info.
- 30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X
- Top 30 Nmap Command Examples For Sys/Network Admins
- 25 PHP Security Best Practices For Sys Admins
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- Linux: 20 Iptables Examples For New SysAdmins
- Top 20 OpenSSH Server Best Security Practices
- Top 20 Nginx WebServer Best Security Practices
- 20 Examples: Make Sure Unix / Linux Configuration Files Are Free From Syntax Errors
- 15 Greatest Open Source Terminal Applications Of 2012

- My 10 UNIX Command Line Mistakes
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- The Novice Guide To Buying A Linux Laptop










{ 1 comment… read it below or add one }
This is good now i can use almos omit the file extensions :D
However page http://httpd.apache.org/docs/2.0/mod/mod_speling.html points that “the directory scan which is necessary for the spelling correction will have an impact on the server’s performance when many spelling corrections have to be performed at the same time”
What you think of this?