Jacob Friis Larsen wrote:
How can I run both php4 and php5 on the same apache server?

Could I do it like this:
AddType application/x-httpd-php .php
AddType application/x-httpd-php5 .php5
And somehow tell php5 to use application/x-httpd-php5


The approach I use is as follows:

On port 80 I run an Apache instance with PHP4
On port 81 I run an Apache instance with PHP5

Via an Apache rewriterule I rewrite all .php5 calls to the other webserver (by proxy), and therefore transparent.

Like this (not sure, dont have the config at hand right now):

RewriteEngine On
RewriteRule (.*)\.php5$  http://%{HTTP_HOST}:81$1.php


Erwin Kerk Webdeveloper

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to