SERV00.COM这个怎么切换PHP版本?
在伪静态规则之外添加
官方给的,是全部的,你只需输入你想用的PHP版本即可
AddType application/x-httpd-php56 .php
AddType application/x-httpd-php70 .php
AddType application/x-httpd-php71 .php
AddType application/x-httpd-php72 .php
AddType application/x-httpd-php73 .php
AddType application/x-httpd-php74 .php
AddType application/x-httpd-php80 .php
AddType application/x-httpd-php81 .php
AddType application/x-httpd-php82 .php
AddType application/x-httpd-php83 .php
如果想用PHP 8.2版本,只需在.htaccess文件的最后一行 或第一行 或 伪静态规则之外,加入
AddType application/x-httpd-php82 .php
保存上传即可。