I'm simply trying to replace
products/t-210.php
In my web browser with
products/t210
(for readability)
by making a soft link t210->t-210.php
In my virtual hosts I have
<Directory /var/www/xxxxxxx.com/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
I get no errors in apache2 error.log
access.log generates code 200 (delivered)
In the HTML output I can see that the PHP is not being executed.
The web server is simply delivering the link/PHP file as text
(obviously the PHP file works)
I searched and read for hours.
What am I missing here?
ADDITION
If I run php t210
on command line then this DOES generate the correct output
It only fails when I "ask" Apache to do it...
So I'm not about the .htaccess file - I'm after why Apache is failing?