Changing the PHP version for a specific directory
This article shows how to set the PHP version for a specific directory on a shared, reseller, or Turbo web hosting account. For example, the default PHP version for your account may be 7.4, but if you want to run PHP 8.0 for a particular application in a specific directory, you can do so.
This article describes how to set the PHP version for a specific directory. Normally, when you set the PHP version in cPanel using the PHP Selector, that version is used for the entire account. However, if you want to use a different PHP version in a specific directory, you can do so.
Important
The information in this article only applies to accounts on servers that are running CloudLinux. This includes:
Shared hosting accounts.
Reseller hosting accounts.
Turbo Web hosting accounts.
Managed VPS and managed Dedicated server accounts activated in May 2023 or after.
For more information about how to determine if your account uses CloudLinux, please see this article.
Changing the PHP version for a directory
To change the PHP version for a specific directory, follow these steps:
-
Using your preferred text editor, create a file named .htaccess in the directory where you want to use a different PHP version.
-
Copy the following text:
<FilesMatch ".(php4|php5|php3|php2|php|phtml)$"> SetHandler application/x-httpd-alt-phpXX___lsphp </FilesMatch>
-
Replace XX with the PHP version you want to use in the directory. You can use any PHP version that is listed in the cPanel PHP Selector. For example, to enable PHP 8.1, you would type
SetHandler application/x-httpd-alt-php81___lsphp
. (Make sure you do not include the period in the version number. For example, for PHP version 7.4, type74
.) -
Paste the modified text into the .htaccess file.
-
Save the .htaccess file. The new PHP version takes effect immediately.
Tip
To verify the new configuration, create a PHP file that runs thephpinfo()function. Load the file in your web browser, and confirm the PHP version. For example:
Important
If you enabled additional PHP extensions for the default PHP version in cPanel, check the output from the phpinfo() function and confirm that the extensions have also been loaded for the custom PHP version in the directory. If the extensions have not been loaded, please open a support ticket at https://my.hosting.com and we will resolve the issue for you.
More Information
For more information about the phpinfo() function, please visit https://www.php.net/manual/en/function.phpinfo.php.
Related Articles
Updated 1 day ago