I have implemented the MVC model, when there is a request, .htaccess redirects to the webroot folder. How to make that used for a specific request (site.com/folder) redirected to another folder (folder)? Here is my .htaccess which lies at the root of the project.
<IfModule mod_rewrite.c> RewriteEngine on RewriteRule ^$ webroot/ [L] RewriteRule (.*) webroot/$1 [L] AddDefaultCharset utf-8 </IfModule>