Does anyone know how to properly configure PHP/FastCGI on a CentOS 7 machine using Apache 2.4?
In the Apache Virtual Host config file, I have this:
<FilesMatch \.php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
It works but only for files ending in .php (I can access the control panel but not the website)
The CMS outputs pages without any extensions and I get an "Access Denied." error when I access a page.
The pages (CMS templates) don't contain php code but they seem to be affected by this. How can I make sure, this also works for pages without any extensions?
Thanks a lot!