[Zope] Problems with PCGI
Magnus Heino
magnus@vuab.net
Thu, 20 Jan 2000 08:23:47 +0100
> I'm trying to set up Zope on my local Roxen test webserver. After a
> few failed attempts of my own, I decided to be smart and search
> zope.org for docs. I found the great Zope/Roxen howto, and everything
> almost works. I'm trying to have all URLs on my box directed to Zope,
> and I'm having a few problems with the Zope rewrite rules posted at
> http://www.zope.org/Members/Bill/Documentation/RoxenZope. Here is how
> my browser, Emacs/W3, renders the table with the Roxen rewrite rules:
>
> | | ||Preferred ReWrite Ruleset || |
> | | || || |
> | | || ^/([A-Z])(.*) || |
> | | || /Zope.cgi/$1$2 ^/([a-z])(.*) || |
> | | || /Zope.cgi/$1$2 ^/([0-9])(.*) || |
> | | || /Zope.cgi/$1$2 || |
>
> Do I need to concatenate any of those lines? Whenever I try going to
> any URL other than /, I get Roxen's default 404 error message.
Preferred ReWrite Ruleset
^/([A-Z])(.*) /Zope.cgi/$1$2
^/([a-z])(.*) /Zope.cgi/$1$2
^/([0-9])(.*) /Zope.cgi/$1$2
/Magnus Heino