Reputation: 45
Good day guys,
Please how do I create a 301 redirect for these pages which are appearing as 404 crawl errors in Google Webmaster Tool? There are like 30 of them now
I want them all redirecting to the actual page http://www.patchworkoftips.com/install-google-play-store-unsupported-android-phones/1624/
Upvotes: 1
Views: 100
Reputation: 9007
You'll more than likely need a generic handler for this - I naturally assume that more than one page is being hit here.
Add the following under RewriteEngine On
:
RewriteCond %{REQUEST_URI} (.*)&sa=.+&ved=.+&usg=.+$ [NC]
RewriteRule ^(.*)$ %1 [R=302,L]
To make the redirect 'permanent', change 302 to 301.
Upvotes: 2