php.ini ファイルの .htaccess を使用して、サーバーで PHP バージョンを 5.2 に変更するにはどうすればよいですか?
質問する
40916 次
3 に答える
8
追加する
AddHandler application/x-httpd-php52 .php .php5 .php4 .php3
あなたの.htaccessにうまくいくかもしれません。
于 2012-08-24T08:25:55.943 に答える
0
I take it you want to process e.g. .php3 files with php 3.x.
You can't switch between php versions like this, but you might be able to do it by setting up a proxy server that distributes the query to one of several servers (one for each PHP version).
There might also be some apache hack that works by calling the cgi-bin mode php in FastCGI mode. See the linked answer for this.
于 2012-08-24T09:26:08.410 に答える