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

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -