How to access subfolder through .htaccess?

I am working on localhost and my project is setup in localhost/web . The problem is now I am getting that I can’t able to access urls like localhost/web/about, it is showing me “Object not found” error in chrome.
Only homepage is working but rest of the pages not like about us, contact us etc.

This is my code:

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule .* /index.php [L]
</IfModule>

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.