Wenn Plesk bei einer Domain oder SubDomain nicht php parsen will, hilft es folgendes in die vhost einzutragen. Der Auskommentierte Teil ist optional.
#ServerName www.domain.de:80
#ServerAdmin "dev@domain.de"
DocumentRoot /srv/www/vhosts/domain.de/httpdocs
#CustomLog /srv/www/vhosts/domain.de/statistics/logs/access_log plesklog
#ErrorLog /srv/www/vhosts/domain.de/statistics/logs/error_log
<IfModule mod_ssl.c>
SSLEngine off
</IfModule>
<Directory /srv/www/vhosts/domain.de/httpdocs>
<IfModule sapi_apache2.c>
php_admin_flag engine on
</IfModule>
<IfModule mod_php5.c>
php_admin_flag engine on
</IfModule>
</Directory>