Topic says it all... I've followed the installation guide meticulously, and tried several different approaches... but I still can't figure out why my controller falls back on the wrong template:
my VHOST (per https://docs.phalcon.io/en/latest/reference/apache.html)
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot "/usr/webroot/test/public/"
DirectoryIndex index.php
ServerName foobar.com
ServerAlias test.foobar.com
<Directory "/usr/webroot/test/public/">
Options All
AllowOverride All
Allow from all
</Directory>
</VirtualHost>
.htaccess in '/usr/webroot/test/public/'
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
</IfModule>
I know the SignupController is being invoked because if i echo/exit in indexAction i see the echo, but for some reason it keeps falling back on the /public/index.phtml template instead of using /public/signup/index.phtml.
any ideas?