Wikitech:URL layout
From Wikitech
For the curious, here's how the URL layouts on wikitech-old.wikimedia.org are achieved:
In apache config:
Alias /view /var/www/wikitech/view.php Alias /edit /var/www/wikitech/edit.php Alias /history /var/www/wikitech/history.php Alias /submit /var/www/wikitech/submit.php Alias /delete /var/www/wikitech/delete.php
These scripts are simple wrappers that set $_REQUEST['action'] and pass control on to index.php.
$wgArticlePath = '/view/$1'; $wgActionPaths = array( 'view' => '/view/$1', 'edit' => '/edit/$1', 'history' => '/history/$1', 'delete' => '/delete/$1', 'submit' => '/submit/$1', );