wamp服务器未在浏览器中显示项目

I am facing a issue while removing index file.

I put a .htaccess file in the root directory of project to remove index file but when I do this server doesn't show project on localhost.

Then I found there was a .htaccess file in application folder which has 'deny of all',I changed it to 'Allowoveride all' but still it is not showing me my project folder.

What I am missing? Please help me. Is there any configuration I am missing or something else?

Change your htaccess with this condition or send your htaccess here.

RewriteEngine on
#RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]

for me in local it showing complete list.

Thanks Amit