Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Redirect Google Blogger Country Code Domains ccTLDs to No Country Code Top Level Domain TLD blogspot.com
<!-- Update: You will no longer need this code, as Blogger do it now by default -->
<!-- This code will redirect any Blogger country code domain (ccTLDs) such as .blogspot.com.eg to the Blogger No Country Code Top Level Domaian TLD .blogspot.com -->
<!-- Just paste this code before <head> tag -->
<!-- Start of the code www.ahmedsheta.com -->
<script type='text/javascript'>
var blog = document.location.hostname;var slug = document.location.pathname;var ctld = blog.substr(blog.lastIndexOf(&quot;.&quot;));if (ctld != &quot;.com&quot;) {var ncr = &quot;http://&quot; + blog.substr(0, blog.indexOf(&quot;.&quot;));ncr += &quot;.blogspot.com/ncr&quot; + slug;window.location.replace(ncr);}</script>
<!-- End of the code www.ahmedsheta.com -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment