Last active
February 23, 2022 03:59
-
-
Save leocaseiro/4305e06948aa97e77c93 to your computer and use it in GitHub Desktop.
Angular html5Mode apache working in a subdirectory /app using ngRoute
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} -s [OR] | |
RewriteCond %{REQUEST_FILENAME} -l [OR] | |
RewriteCond %{REQUEST_FILENAME} -d | |
RewriteRule ^.*$ - [NC,L] | |
RewriteRule ^(.*) /app/index.html [NC,L] | |
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module('myApp', ['ngRoute']) | |
.config(function($routeProvider, $locationProvider) { | |
$routeProvider.when('/list', | |
{ | |
templateUrl: 'templates/list.html', | |
controller: 'ListController' | |
}); | |
$routeProvider.when('/new', | |
{ | |
templateUrl: 'templates/new.html', | |
controller: 'EditController' | |
}); | |
//Default URL | |
$routeProvider.otherwise({redirectTo:'list'}); | |
//html5Mode don't need /app/#/ anymore, just /app/ | |
$locationProvider.html5Mode(true).hashPrefix('!'); //the hashPrefix is for SEO | |
}) | |
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html ng-app="myApp"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>List</title> | |
<base href="/app/"><!-- Make sure the base is above your stylesheet --> | |
<meta name="fragment" content="!" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<link rel="stylesheet" href="css/app.css" /> | |
</head> | |
<body> | |
<ng-view></ng-view> | |
<script src="lib/angular/angular.js"></script> | |
<script src="lib/angular/angular-route.min.js"></script> | |
<script src="js/controllers/ListController.js"></script> | |
<script src="js/controllers/EditController.js"></script> | |
</body> | |
</html> |
@leocaseiro What to do to work in subroutes?
# Refresh works
app.com/route-a
# Refresh don't work
app.com/child-route/route-b
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you it worked for me also.