Hi there,
Trying my best to explain what i mean. First of all, normal websites function properly, whatever php version and settings i choose, works perfect. When i'm inserting additonal directives for a vhost, in this case an alias for a application, as example (example.com/index.php works normally):
This would lead to the url example.com/webaccess.
The strange part, while example.com/index.php works as normal, example.com/webaccess downloads the index.php which is in "/usr/share/zarafa-webaccess/". It's like PHP is completely disabled in this aliased location, but WHY ? What i'm overseeing here ? I know that worked before, but now with this fresh install of CentOS 7 and Plesk i have this behaviour.
Any help would be really nice.
regards,
Markus
Trying my best to explain what i mean. First of all, normal websites function properly, whatever php version and settings i choose, works perfect. When i'm inserting additonal directives for a vhost, in this case an alias for a application, as example (example.com/index.php works normally):
Code:
Alias /webaccess /usr/share/webaccess
<Directory /usr/share/zarafa-webaccess/>
DirectoryIndex index.php
Options -Indexes +FollowSymLinks
AllowOverride Options
<IfModule !mod_authz_core.c>
Order allow,deny
Allow from all
</IfModule>
<IfModule mod_authz_core.c>
Require all granted
</IfModule>
</Directory>
This would lead to the url example.com/webaccess.
The strange part, while example.com/index.php works as normal, example.com/webaccess downloads the index.php which is in "/usr/share/zarafa-webaccess/". It's like PHP is completely disabled in this aliased location, but WHY ? What i'm overseeing here ? I know that worked before, but now with this fresh install of CentOS 7 and Plesk i have this behaviour.
Any help would be really nice.
regards,
Markus