angularjs + gae (Java) を使用したアプリがあります。私の index.html には、UI ビューがあります。index.html からソース コードを表示すると、問題ありません。
<html>
<head> //some contents </head>
<body>
<div ui-view></div>
</body>
</html>
しかし、他のページに移動すると、同じコードが表示されます。
他のページコードを表示するには?
例: http://mysite.appspot.com/about
<html>
<head> //some contents </head>
<body>
<div> //about html code </div>
</body>
</html>