html - automatically adding www to site url by GIthub -
html - <a href> automatically adding www to site url by GIthub -
i have linked project made on heroku application made github page. code follows:
<a href="http://msitproject.herokuapp.com">project</a>
when click on link github automatically prefixes www. application on heroku cannot accessed adding "www" prefix. is,
msitproject.herokuapp.com [works]
www.msitproject.herokuapp.com [doesn't work]
how can prevent github adding "www"
looking in index.html code, found :
<a href="msitproject.heroku.com"><h4 class="project-name">bulletin app</h4></a> it supposed :
<a href="http://msitproject.heroku.com"><h4 class="project-name">bulletin app</h4></a> html heroku hyperlink github-pages
Comments
Post a Comment