I found the solution. I was making a mistake. On log out link a href I was putting the link to and index.html page like below
<li><a href="index.html" data-toggle="modal" data-target="#logoutModal"><i class="fa fa-sign-out pull-right"></i> Log Out</a></li>
Then I removed the index.html link inside a tag. Now it's like below and the issue is resolved.
<li><a href="" data-toggle="modal" data-target="#logoutModal"><i class="fa fa-sign-out pull-right"></i> Log Out</a></li>