Hi All, When someone visit www.example.com/foobar I'd like to force a trailing slash. Here's what I've got so far, but it doesn't seem to be working, and I've tried a number of variations to no avail.
reqrep ^([^\ ]*)\ /foobar(.*) \1\ /foobar/\2 If someone goes to example.com/foobar/stuff I'd also like to force a trailing slash. For some reason when pointing to directories, the resource files are not found unless the directory path ends with a slash. But If that second request is too much, I can just stick with the first one. So that people navigating to that first landing page get it properly rendered. Thanks for any help. Cheers Nick

