What would the proper syntax be to redirect a URL in ISAPI Rewrite that's in a folder to the homepage? For example... /category/sub-category/file.html
I've tried numerous things, such as...
RewriteRule ^category/sub-category/file.html / [NC,R=301,L]
RewriteRule ^category/sub-category/file.html http://www.mysite.com/ [NC,R=301,L]
RewriteRule ^category/sub-category/file.html http\://www.mysite\.com/ [NC,R=301,L]
RewriteRule ^category/sub-category/file\.html / [NC,R=301,L]
RewriteRule ^category/sub-category\/file\.html / [NC,R=301,L]
etc.
...but I can't seem to get anything to work!