Answers for "how to add multiple php version in xampp ubuntu"

PHP
0

install multiple php versions windows xampp

<Directory "C:xampphtdocsmy_old_project1">
    <FilesMatch ".php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</Directory>

<Directory "C:xampphtdocsmy_old_project2">
    <FilesMatch ".php$">
        SetHandler application/x-httpd-php56-cgi
    </FilesMatch>
</Directory>
Posted by: Guest on June-12-2020

Browse Popular Code Answers by Language