v1.6.9
Only 3rd party add-ons are jQuery for the Control Panel extension v1.1.1 and Solspace Freeform module v3.0.1
Web server is nginx with basic rewrite rule to remove index.php.
location / {
index index.php;
if (-e $request_filename) {
break;
}
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?$1 last;
break;
}
}
Again, visiting http://www.mysite.com/group will NOT parse PHP, but visiting http://www.mysite.com/group/index will. Both requests are being rewritten via the rule above because the pages render, but PHP only appears when the full group/template path is provided in the URL. Strange.