I have htaccess and I want to write same functioning in web.config but don’t have any knowledge of it, please help. Below is my htaccess code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
From your tags I assume your using IIS7 URL Rewrite Module? If so then: