Mojavi2のdispatchとかをごにょごにょする

php_value auto_prepend_file /home/foo/initialize.php
php_value auto_prepend_file /home/foo/dispatch.php

とか.htaccessに設定しておく。
そんで、ブラウザからアクセスするindex.php

<?php

$dispatch = array('Default', 'Sample');

class SampleAction extends Action
{
    // ...
}

class SampleViewSuccess extends View
{
    // ....
}

class SampleViewError extends View
{
    // ....
}

?>

後は、Controllerの中身をごにょごにょする。
とかやっておくと、その.htaccessを置いたディレクトリ以下のどこでもmojaviが使える。
クラスをファイルに全部書いているのは個人的な好みの問題。