在cpanel中为子域设置不同的php版本?

时间:2018-07-30 14:33:10

标签: php cpanel web-hosting

我的Cpanel当前版本是php 7.0。我必须更新一个应该在php 7.1版本上运行的子域。 我将此行添加到了.htaccess文件中。

SetHandler application/x-lsphp7.1

现在我面临的问题是.php文件是下载而不是execute.How解决此问题。 My.htaccess文件看起来像

SetHandler application/x-lsphp7.1
<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>

    RewriteEngine On

    # Redirect Trailing Slashes If Not A Folder...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)/$ /$1 [L,R=301]

    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
</IfModule>

0 个答案:

没有答案