How to remove ?m=1 instantly in website.
जब आप Mobile पर किसी वेब साइट पर जाते हैं, तो आप देखते हैं कि पता बार में स्थिति URL हो सकता है ?m=1 आपकी area unit इसे हटाने का कोई तरीका चाहती है? आजकल ऑनलाइन आपके साथ Blogspot मोबाइल address bar पर रणनीति प्रतिस्थापन ?m=1 साझा कर सकता है, ताकि वेब साइट SEO को स्थानांतरित न करते हुए आपकी डायरी को अधिक कुशल बनाया जा सके।
How to remove ?m=1
Remove ?m=0 Process follow step by step.
1. सबसे पहले अपने Blogger Dashboard में लॉग इन करें।
2. थीम Option पर क्लिक करें।
3. HTML संपादित करें पर क्लिक करें।
4. आपको दिखाई देने वाले बॉक्स के अंदर एक बार क्लिक करें।
5. keyboard से Control F (CTRL + F) दबाएं।
6. अधिक खोजें </body>
7. Enter Press करते ही आप वहां पहुंच जाएंगे जहां लिखा है।
8.नीचे दिए गए Code को Copy करें.
Copy this Code:How to remove ?m=1
<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>
Thank you
Social Plugin