Hello, How could I achieve the following in httpd.conf:
If any url ends with "/" but the directory does not exist, open the same url, but without the "/" at the end. ie: if the following doesn't exist http://example.com/non/existent/path/ open: http://example.com/non/existent/path It doesn't matter, whether the redirected path exists. (if the directory does exist, don't redirect anywhere and open it normally) Thanks! tr

