Reputation: 343
Google indexed my dev server :) I had test version of the site on him, now I want to 301 all the traffic to new server. But on dev I had this in folder and I don't know how to redirect.
Dev server: http://mydevserver.xyz/myfolder1/ Official page server: http://mypage_server.abc/
Tried:
RedirectMatch 301 ^/myfolder1/ http://mypage_server.abc/?
But redirects to http://mypage_server.abc not the subpage.
Upvotes: 1
Views: 260
Reputation: 5748
You can try this rule instead:
RedirectMatch 301 ^/myfolder1/(.*)$ http://mypage_server.abc/$1
Upvotes: 1