Thanks for the quick reply!
This may indeed work for the URL. Indeed /foo/bar is not a file nor is it a directory. It is a class/method. So there would be a file named foo.php in the controller directory and inside that file there would be a bar() function.
Ok so that should work for my site URL. Can you do an example for each one of the directory's I put above the URL example?
Example is that in the root there would be images and javascript folders with files. So they do exist as directories and I need access to the files within them. Basically I am not sure if I would need to add REQUEST_FILENAMES for files and directories and not sure.
Would it look like:
<rule name="MyRule2">
<match url="^/system/(.*)" />
<action type="Rewrite" url="/system/{R:1}" appendQuerystring="false" />
</rule>
?
Also, since some of this stuff is javascript and will contain ajax code do I need to look into making appendQueryString="true" at all if they use GET?
Thanks for your help so far!
-hooflung64