(Fri, Jan 27, 2006 at 03:07:41AM -0300) Pupeno wrote/schrieb/egrapse: > Does anybody know how can I make a COREBlog the home page of a site ? > Like http://zope.poly.powerfulnet.net/pupeno.com really showing > http://zope.poly.powerfulnet.net/pupeno.com/blog
The proper solution is: - Host Zope behind Apache and use Apache's RewriteRules to rewrite the requests. You can find information about how to do this on http://zopewiki.org/ZopeAndApache, inside the Help of the "Virtual Host Monster" object in the ZMI, and finally you can use http://betabug.ch/zope/witch to get a proper RewriteRule. or since your question does not really translate to the example you give: - Put a Python Script into the Zope folder "pupeno.com", call it "index_html" and in the python code have something like: request.RESPONSE.redirect('http://zope.poly.powerfulnet.net/pupeno.com/blog') And then set up the "Blog URL" in the COREBlog settings to reflect that longer URL. Regards, Sascha _______________________________________________ COREblog-en mailing list [email protected] http://postaria.com/cgi-bin/mailman/listinfo/coreblog-en Unsubscription writing to [EMAIL PROTECTED]
