<div class="gmail_quote">On Tue, Feb 10, 2009 at 1:05 AM, Bradey Honsinger <span dir="ltr"><<a href="mailto:bradeyh@gmail.com">bradeyh@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div class="Ih2E3d">On Mon, Feb 9, 2009 at 5:43 PM, Joe Legner <<a href="mailto:joelegner@gmail.com">joelegner@gmail.com</a>> wrote:<br>
> I am running MoinMoin 1.8.1 on Webfaction, which runs under<br>
> Apache (.htaccess only).  My main script is named index.cgi.<br>
><br>
> Currently index.cgi appears in all urls:<br>
><br>
> <a href="http://www.mysite.com/index.cgi/FrontPage" target="_blank">http://www.mysite.com/index.cgi/FrontPage</a><br>
><br>
</div><div class="Ih2E3d">> What I want to know is how to configure either MoinMoin or .htaccess so I<br>
> get the following:<br>
><br>
> <a href="http://www.mysite.com/FrontPage" target="_blank">http://www.mysite.com/FrontPage</a><br>
<br>
</div>I'm running MoinMoin on Webfaction as well, and doing the same thing.<br>
You're most of the way there--you just need to updated the properties<br>
line in index.cgi:<br>
<br>
    <a href="http://forum.webfaction.com/viewtopic.php?pid=6118#p6118" target="_blank">http://forum.webfaction.com/viewtopic.php?pid=6118#p6118</a><br>
<br>
On Moin 1.7.3, it looks like this:<br>
<br>
========<br>
--- index.cgi~  2008-11-22 01:08:38.000000000 -0600<br>
+++ index.cgi   2008-11-22 02:06:33.000000000 -0600<br>
@@ -43,7 +43,7 @@<br>
     # Properties<br>
     # Allow overriding any request property by the value defined in<br>
     # this dict e.g properties = {'script_name': '/mywiki'}.<br>
-    ## properties = {}<br>
+    properties = {'script_name': '/'}<br>
<br>
     # Hotshot profile (default commented)<br>
     ## hotshotProfile = name + '.prof'<br>
========<br>
<font color="#888888"><br>
  - Bradey<br>
</font></blockquote></div><br>Thanks, that did the trick!  I hade previously tried 'script_alias' on a hunch, but it didn't work.<br><br>Does anyone know where the properties options for the CgiConfig class are documented?  I cannot find that for the life of me.  <br>