使用 .htaccess 檔案更改 PHP 版本
Kevin Amayi
2023年1月30日
2022年5月13日
我們將看看如何使用 .htaccess
檔案更改 PHP 版本。
使用 .htaccess
檔案更改 PHP 版本
我們將下面的行新增到我們的 .htaccess
檔案中以指定我們要使用的 php 版本,在本例中為 php 7.3。
<?php
# Use PHP(7) as default
SetHandler application/x-lsphp73
?>
輸出 :
<!-- Output in .htaccess-->
<FilesMatch "\.(php4|php5|php7|php3|php2|php|phtml)$">
SetHandler application/x-lsphp73
</FilesMatch>
在 PHP 中使用 phpinfo()
檢查我們的版本
<?php
phpinfo();
?>
輸出: