My application structure is like:
wamp/www
/project
/app
/public
/system
/writable
I am able to access the application from http://localhost/project/public. However, http://localhost/project shows index of project.
I tried putting .htaccess file in the project folder.
RewriteEngine On
RewriteBase /project/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ public/index.php/$1 [L]
It is also not working.
How do I make the application accessible from the project folder.