Why "main" is not being displayed in the URL ? Here is the Plunker.
index2.html is the working file. I have modified index2.html to index.html to include routing but it's not working.
app.js has routing configuration
(function() {
    var app1 = angular.module('plunker', ["ngRoute"]);
    app1.config(function($routeProvider) {
      $routeProvider
        .when("/main", {
          templateUrl: "main.html",
          controller: "ControllerFile.js"
        })
      .otherwise({
        redirectTo: "/main"
      })
    })
  }   ());
 
    