I just re-organized my site. I want to forward http://mythbustersresults.com/results/season1.html to http://mythbustersresults.com/season1/ This is the code I have in the .htacces: redirect 301 /results/season1.html http://mythbustersresults.com/season1/ Code (markup): This results in the page being forward to http://mythbustersresults.com/season1.html instead of http://mythbustersresults.com/season1/ Help Please!
Try this code RedirectMatch permanent ^/results/season1.html$ http://mythbustersresults.com/season1/ Code (markup):
I tried that and it had the same effect...then I realized that I had another rule in the file that was conflicting so I was able to fix it. Thanks.