I need to change the PHP version for one domain in my hosting .
the hosting have php 8.2 , and for one website I need 7.4
I need to do it in the htaccess file
I´ve tried adding the following line at the beginning of the root htaccess file in PBS
AddHandler application/x-httpd-php74 .php
But it won´t work, the website gets 8.2 from the main hosting environment
I also tried with the following
<FilesMatch “\.(php4|php5|php3|php2|php|phtml)$”>
SetHandler application/x-lsphp74
</FilesMatch>
But the website won´t work anymore
Any suggestion?