The really neat thing about Moto is that once you have a Moto site developed and tweaked then you can compile it into an apache module. The takes the interpreted mode out of the picture and allows apache to serve up Moto pages at super quick speeds. In fact, pages served via a mmc-compiled Moto module are served faster than even static html files. Tempting, isn't it?
So, its actually pretty simple.   Here is a quick run down of the steps involved,
and I will elaborate later.
    touch index.moto in that directoryTo see the current usage of Moto just type something like:
  shell$ mmc -?
  /usr/local/moto/bin/mmc: illegal option -- ?
  Usage: mmc [options] 
    -n [Module Name]      Specifies the name of the module to be created
    -X [Paths]            Prepends the specified paths to the list
                          of paths in which to look for moto extensions
    -a [Annoucement]      Add the following announcement to the Server:
                          response header.
    -d                    do not delete the folder /tmp/ after
                          compilation
    -e                    Compile files ending with the specified extensions
                          in addition to all .moto files in the specified path
    -q                    execute in quit mode
    -?                    this screen
  For the development of Markive I use a separate directory in http://projects.standblue.net/tmarkive. This way, I can make changes to the source in a separate location, and then when I am ready to make the changes live I can just compile with mmc and setup httpd.conf to look for /markive/ instead. So, I am going to use this setup as my example for this guide. /tmarkive is my development directory and /markive is the directory being handled by mod_markive.
First, be sure to do step 1 and write the code, thats sort of important here. After you have tested everything and are sure that you want to make your site a module, decide on the URL layout that you want to use. Like I said, I use /tmarkive for testing, and /markive for the live site. If you decide to use separate paths then you will need to create the directory on the filesystem where you want apache to map the module to. You will also need to touch the filename that is your directory index listing, most people will be using index.moto:
  shell$ cd /usr/local/apache/htdocs
  shell$ mkdir markive
  shell$ touch markive/index.moto
  shell$ /usr/local/moto/bin/mmc -n markive -d tmarkive/
  ##################################################################
  Done.
  To run this module...
  Add the following directives to your httpd.conf file:
  LoadModule markive_module libexec/mod_markive.so
  <IfModule mod_markive.c>
     <Location /[your location]>
        MarkiveOption Location /[your location]
        SetHandler markive
     </Location>
  </IfModule>
  Once you have added these directives, restart Apache. All
  pages within the subtree you compiled will be available
  off of
  http://[your machine]/[your location]/
  Note that if you compiled only a single moto page the URL
  will be
  http://[your machine]/[your location]/[your page].moto
  ##################################################################
Okay, onto the stuff that requires root permissions.  If you passed mmc the -d
option (as I recommend) then the module is still going to be hanging around
in the /tmp directory.  Go there and look around for something that looks a
little like /tmp/mmc_<module-name>.$pid/mod_<module-name>.so
where $pid is the process id of the mmc command.  Copy this file to your apache module 
directory, which is typically /usr/local/apache/libexec on source 
installations, or /usr/lib/apache on most modern redhat machines
where apache was installed via rpm (or during the OS installation).
  shell# cp /tmp/mmc_markive.1523/mod_markive.so /usr/local/apache/libexec/
  LoadModule markive_module libexec/mod_markive.so
  # remember to put this in your <VirtualHost> directive if you
  # are using your module on a virtual domain
  <IfModule mod_markive.c>
    <Location /markive>
       MarkiveOption Location /markive
       SetHandler markive
    </Location>
  </IfModule>
Probably the thing that trips up most people is when they compile a site 
and then configure apache to handle it for a different path than where
the actual Moto files reside.  If you change the Location or
<Module-name>Option to something other than what mmc
spits out, then you need to remember to make the directory on the filesystem
and then touch index.moto in the directory.