Fake URLs created automaticly

后端 未结 1 1763
傲寒
傲寒 2021-01-23 15:44

While checking my indexed pages in Google and Bing. i have found below links in search engine index listing. i am getting 404 errors in google webmaster tools. i got wordpress i

相关标签:
1条回答
  • 2021-01-23 16:29

    Majority of your bad URLs can be permanently redirected to correct one with this rule:

    RewriteEngine On
    
    RewriteCond %{QUERY_STRING} ^.+$
    RewriteRule ^(page/[0-9]+/).*$ /$1? [L,NC,R=301]
    
    0 讨论(0)
提交回复
热议问题