Mobile app version of vmapp.org
Login or Join
Ann8826881

: How to Remove wpmp_switcher strings from Blog URLs I was using WordPress mobile pack plugin which i have already uninstalled but there are too many URLs are indexed in Google with ?wpmp_switcher=desktop

@Ann8826881

Posted in: #Php #Plugin #Wordpress

I was using WordPress mobile pack plugin which i have already uninstalled but there are too many URLs are indexed in Google with ?wpmp_switcher=desktop parameter. How can i fixed and no index kind of URLs or is there any plugin to fixed this

Example URL is
www.example.com/contact-us/?wpmp_switcher=desktop

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Ann8826881

1 Comments

Sorted by latest first Latest Oldest Best

 

@Megan663

You could put in a rewrite rule that redirects to remove the query string when it contains that parameter:

RewriteEngine On
RewriteCond %{QUERY_STRING} wpmp_switcher
RewriteRule (.*) [R=301,L]


This code would go in your .htaccess file

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme