I am having a routing error, when i point to project/ I can see the folder structure /app and /public when I click on /public folder I can see the output of indexAction in indexController right now my url is localhost/project/public/ and I have created SignupController and indexAction if i access the page localhost/project/signup getting an 404 page not found error same if i access localhost/project/public/signup
my .htaccess file is
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ public/ [L]
RewriteRule (.*) public/$1 [L]
</IfModule>
I am using ubuntu elementary os luna server apache2 Am I following correctly please help.