Page with Redirect means google says-That page you submitted does not available directly, this page sends to google by someone else.
When google crawl a specific URL, google does not get the actual page but it redirect to other URL.
How to correct this problem:
1. Firstly go to blogger settings. Click on Custom robots.txt.
2. Then type Disallow:/ *?m=1 in Custom robots.txt
3. Now go to Theme section and click on edit HTML.
4. Go to last step: </script>
5. Click next to </script>, and press enter key.
6. Copy the following text and paste-next to </script>
<script type='text/javascript'>
//<![CDATA[
var uri = window.location.toString();
if (uri.indexOf("%3D","%3D") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("%3D"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("%3D%3D","%3D%3D") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("%3D%3D"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("&m=1","&m=1") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("&m=1"));
window.history.replaceState({}, document.title, clean_uri);
}
var uri = window.location.toString();
if (uri.indexOf("?m=1","?m=1") > 0) {
var clean_uri = uri.substring(0, uri.indexOf("?m=1"));
window.history.replaceState({}, document.title, clean_uri);
}
//]]>
</script>
7. Now click on Save.
8. Go to search console, and open page with redirect URL.
9. Now click on any URL, then click on INSPECT URL.
10. Click on Test Live
11. Click on Request Indexing.
12. Now Click on pages.
13. Click on page with redirect.
14. Click on validate.
Now your problem fixed, wait 1 or 2 week to resolve this problem permanently.
OR
How to solve this problem:
* Check URL properly in search console.
* Correct unintentional redirects or update internal links.
* Use consistent internal linking.
* Check your website sitemap.
* Check your redirect rules are correct.
No comments:
Post a Comment