MediaWiki is a web-based wiki software application used by famous wikipedia project. This software is quite famous and scales very well.
Installing mediawiki under Lighttpd is quite simple. If you need clean SEO urls; just follow these instructions.
Download and install wiki software in your domain directory. For example install software under /home/lighttpd/theos.in/http/w directory.
Download mediawiki
Visit official site to download latest version or use wget command:
$ cd /home/lighttpd/theos.in/http
$ wget http://download.wikimedia.org/mediawiki/1.9/mediawiki-1.9.3.tar.gz
$ tar -zxvf mediawiki-1.9.3.tar.gz
$ mv mediawiki-1.9.3 w
Make sure you have correct permissions to store configuration file:
$ cd w
$ chmod a+w config
Install mediawiki
Open a web browser and install mediawiki by visiting url yourdomain.com/w/ i.e. http://theos.in/w/. When done copy config/LocalSettings.php file to /home/lighttpd/theos.in/http/w directory:
$ mv config/LocalSettings.php .
Configure Mediawiki lighttpd SEO rules
Open lighttpd.conf file:
# vi /etc/lighttpd/lighttpd.conf
Locate your virtual domain configuration and add following code:
url.rewrite-once = ( "^/wiki/([^?]*)(?:\?(.*))?$" => "/w/index.php?title=$1&$2" )
url.redirect = ( "^/(?!w|wiki|robots\.txt|favicon\.ico)(.*)" => "/wiki/$1" )
Save and close the file. Restart lighttpd:
# /etc/init.d/lighttpd restart
Configure Mediawiki for clean SEO urls
Open /home/lighttpd/theos.in/http/w/LocalSettings.php file:
$ vi LocalSettings.php
Append following config directive:
$wgArticlePath = "/wiki/$1";
Save close the file. Fire a web-browser and type url yourdomain.com/wiki/ i.e. http://theos.in/wiki/.
References:
- 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












{ 3 comments… read them below or add one }
This howto does not work. I get 404 and I’m pretty sure the rewrite itself work. BTW you can put the url.rewrite-once anywhere to your config. I have no idea what’s the problem.
Good guide, thanks :-) – however the redirect rule seems incorrect – should it not be redirecting to /wiki/$1, not /w/$1, as that’s where the files were moved to? ;-)
Fr3d,
I’ve installed wikimedia in /w/ directory, so so it is correct. Basically instead of serving page from domain.com/w/Main_page I’m using domain.com/wiki/Main_page but my user registration and posting is done via domain.com/w/index.php?option url :)
Appreciate your post!