Remove ?m=1 from your blogger
Just copy the following code to your tail of your html code and your problems will be solved. After including this code also removes the problem excluded page with redirect which will reduce your website ranking . So it is important to remove such issue so that your website looks good and be sure that your same page doesn't contain page with more than one url.
<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>
1. Copy the code given above
2. Paste it to your theme html code at the end of your code (before <\body> tag)
3. Save it
4 check by view your web page on mobile devices ?m=1 will be removed.
also read: how to get traffic on blog
also read:how to download videos from anywhere
also read: how to add faqs to your blog
also read: ways to activate window free
Comments
Post a Comment