Skip to content

Instantly share code, notes, and snippets.

@ahmed-sheta
Last active October 22, 2019 03:34
Show Gist options
  • Save ahmed-sheta/cdcbd4480f46b17d2f5fa5c3b6f6a03f to your computer and use it in GitHub Desktop.
Save ahmed-sheta/cdcbd4480f46b17d2f5fa5c3b6f6a03f to your computer and use it in GitHub Desktop.
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