Due to this, I decided to get my hands dirty into MediaWiki. Below tips should help you in setting up clean URL(s) for your media-wiki installation on GoDaddy.
* When testing these instructions, be sure to launch a new browser instance to prevent browser caching from hiding the latest configuration changes.
[edit] .htaccess
Create .htaccess in wiki installation directory (with GoDaddy File Manager or by FTP) with this content:
RewriteEngine On
RewriteRule ^wiki/(.*)$ /index.php?title=$1 [PT,L,QSA]
RewriteRule ^wiki/*$ /index.php [L,QSA]
RewriteRule ^/*$ /index.php [L,QSA]
[edit] LocalSettings.php
Add the following to the end of LocalSettings.php (in Subdomain directory):
# SHORT URLS:
$wgScriptPath = ""; # Path to the actual files
$wgArticlePath = "/wiki/$1"; # Virtual path
It may be necessary to set $wgUsePathInfo to true with this code:
$wgUsePathInfo = true;