I'm just trying to figure out what the following block of code is doing with a URL so I can locate the file that its dealing with. Can anyone help me out?
RewriteCond %{HTTP_URL} !/*.deploy?(.*) [I]
RewriteCond %{HTTP_URL} !/*.manifest?(.*) [I]
RewriteCond %{HTTP_URL} !/Webresource.axd?(.*) [I]
RewriteCond %{HTTP_URL} !/Trace.axd(.*) [I]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /Default.aspx?404;http://%{HTTP_HOST}$1 [U,L]
Thanks