我的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>