I've attempted just about every path combination that I can think of, but have yet to have any success redirecting to any file besides files in the top level directory. Based on what happens and what the inputs are, I would like to attempt to load pages from different subdirectories. Primarily to keep function separated.
I've tried the following:
Code: Select all
RedirectResponse( sock, "test.htm" ); // Works
RedirectResponse( sock, "normal/test.htm" ); // Doesn't Work
RedirectResponse( sock, "/normal/test.htm" ); // Doesn't Work
RedirectResponse( sock, "./normal/test.htm" ); // Doesn't Work
Thank you.