Forum Moderators: phranque
I'm trying to achieve multiple redirects, and what I have done is had a look at this page to get some ideas, [httpd.apache.org...]
What I'm trying to do is that I have a list of ASP URL's and I need to redirect them as HTML.
Below is the code I've used, to achieve this,
RedirectMatch (.*)\.asp$ [mydomain.com$1.html...]
This does work, however how do I get it to work if the file resides in a directory. The above code works if the file is at root level.
This is the test
[mydomain.com...]
Should redirect to:
[mydomain.com...]
Many Thanks
W :o)