我已将我在heroku上创建的项目链接到另一个作为Github Page的应用程序。我的代码如下:
<a href="http://msitproject.herokuapp.com">Project</a>
当我点击链接时,Github会自动为它添加前缀www。但是我无法通过添加&#34; www&#34;来访问我在heroku上的应用程序。作为前缀。也就是说,
msitproject.herokuapp.com [工作]
www.msitproject.herokuapp.com [没有工作]
如何阻止Github添加&#34; www&#34;
答案 0 :(得分:1)
查看index.html code,我发现了这个:
<a href="msitproject.heroku.com"><h4 class="project-name">Bulletin App</h4></a>
应该是这样的:
<a href="http://msitproject.heroku.com"><h4 class="project-name">Bulletin App</h4></a>