Hello All, I was hoping someone could help me with a Redirect issue. I have a new site created that is replacing an old version. We got rid of a bunch of subpages and are trying to get the old URLs to relink to the corresponding new pages. This works on some of them, bringing them back to he main page and a certain section (its a one page scrolling site for the most part) but the ones that are supposed to go to the sub-pages are not working.
I have tired a bunch of different permutations with no luck. The old site used Wordpress and the current one does not, if that is a factor. This is my first real site-build, so any help would be greatly appreciated - thanks!
Here is the code I am trying to use, the redirects work properly up through the 'Careers' section:
Options +FollowSymLinks
RewriteEngine on
#301 Redirect Old File
Redirect 301 /contact http://www.mngdirect.com/#contact
Redirect 301 /about http://www.mngdirect.com
Redirect 301 /careers http://www.mngdirect.com/#careers
Redirect 301 /our-team http://www.mngdirect.com/#teams
Redirect 301 /about/careers http://www.mngdirect.com/#careers
Redirect 301 /solutions/eventdirect http://www.mngdirect.com/eventdirect
Redirect 301 /solutions/marketingdirect http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/eventdirect/eventdirect-peer-to-peer/ http://www.mngdirect.com/eventdirect
Redirect 301 /solutions/eventdirect/eventdirect-advisory-board/ http://www.mngdirect.com/eventdirect
Redirect 301 /solutions/eventdirect/eventdirect-broadcast/ http://www.mngdirect.com/eventdirect
Redirect 301 /solutions/eventdirect/eventdirect-speaker-training/ http://www.mngdirect.com/eventdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-triggered-formulary-campaigns/ http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-triggered-attendee-campaigns/ http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-scheduled-speaker-campaigns/ http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-scheduled-target-campaigns/ http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-triggered-rep-campaigns/ http://www.mngdirect.com/marketingdirect
Redirect 301 /solutions/marketingdirect/marketingdirect-triggered-behavior-campaigns/ http://www.mngdirect.com/marketingdirect
#RedirectMatch 301 ^/solutions/ http://www.mngdirect.com/#solutions
#error 404
ErrorDocument 404 /404.html
-Nate