Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gowthamsadasivam/872e9331270fc2fbffe5 to your computer and use it in GitHub Desktop.
Save gowthamsadasivam/872e9331270fc2fbffe5 to your computer and use it in GitHub Desktop.
Canonical URL redirection from non-www to www
<script>
var www = window.location.href;
if(www.search('www')==-1){
window.location.href='http://www.'+window.location.host+window.location.pathname;
}</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment