Apache Content w/ Zope
I am very new to Zope, so please bear with me. I have a virtualhost setup with a rewrite rule so that http://my.host.com will take you directly to our zope root. My boss wants us to be able to put some JSP or PHP scripts and be able to go to http://my.host.com/some.php That of course won't work, because that isn't a zope object. I have seen a method of accomplishing something like this with rewrite rules, so you could have http://my.host.com/nozope be delivering the scripts, and if all else fails, we may have to use that method. I thought it might be possible to have rules saying something like "if it ends in php jsp jpg then it is apache content, otherwise it is zope content" I have no clue how to make that work though. Does anyone have any suggestions? Alex Kelly
i just solved this problem for myself earlier this week, i have a series of rewrite rules that handle php, images, and pdf's that are processed before the one for zope. you can use a rule like this: RewriteRule ^/*.php /path/to/your/php/scripts/$1 [L] which would make it possible to deliver both zope and non-zope content from http://my.host.com/ w/o having to use any special sub-directories. -- jacob walcik jwalcik@notwithstanding.org On Wed, 6 Jun 2001, Alex Kelly wrote:
I am very new to Zope, so please bear with me. I have a virtualhost setup with a rewrite rule so that http://my.host.com will take you directly to our zope root. My boss wants us to be able to put some JSP or PHP scripts and be able to go to http://my.host.com/some.php That of course won't work, because that isn't a zope object.
I have seen a method of accomplishing something like this with rewrite rules, so you could have http://my.host.com/nozope be delivering the scripts, and if all else fails, we may have to use that method. I thought it might be possible to have rules saying something like "if it ends in php jsp jpg then it is apache content, otherwise it is zope content" I have no clue how to make that work though.
Does anyone have any suggestions?
Alex Kelly
_______________________________________________ Zope maillist - Zope@zope.org http://lists.zope.org/mailman/listinfo/zope ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope-dev )
participants (2)
-
Alex Kelly -
jacob walcik