Thanks lunabyte,
I have tried using:
RewriteRule ^(.*/)?shop.php/(.*) wp-content/shop/shop.php?$2 [L]
and then I tried...
RewriteRule ^(.*/)?shop.php/(.*)wp-content/blogs.dir/11/shop.php?$2 [L]
...because that is the actual location of the file. Unfortunately, both of these didn't work.
I want to clarify the ultimate goal and the location of the AOM folder and files. Upon a blog owner's request, I would like to add the following folders and files to a specific blog. It is my understanding that I need to add these files and folders in this location...
http://ausersblog.example.com/wp-content/blogs.dir/11/AOM_FILES_AND_FOLDERS_HERE
Here is a screenshot of how I have this installed on a blog with the id of 11, View Pic
You can see that there is one folder called aom and three files, aom.php, admin.php, and shop.php. A user needs to have access to access to the admin.php file to configure their store, and the of course, the shop.php file needs to be accessible to all.
So, as you can see, there is no shop folder. That's why I tried editing the suggested code into:
RewriteRule ^(.*/)?shop.php/(.*)wp-content/blogs.dir/shop.php?$2 [L]
This doesn't work, and I actually wouldn't expect it to since this is not accounting for either a specific blog id (11), or a blog id variable after the blogs.dir.
Does this make any sense? Is what I'm trying to do impossible with Rewrite rules?
Thanks for any further thoughts...