当我运行 gulp 时,服务器以消息启动:无法获取 /。当我指向 localhost:3000/app/index.html 时,该站点重定向到 localhost:3000/home 并正常工作。但是,当我重新加载页面时,它给出:无法获取 /home。
请查看以下配置以查看是否遗漏了任何内容:
访问路径:app/index.html
这是我的 gulpfile.js:
var gulp = require('gulp'),
nodemon = require('gulp-nodemon'),
jshint = require('gulp-jshint'),
browserSync = require('browser-sync')
modRewrite = require('connect-modrewrite');
gulp.task('lint', function () {
gulp.src('app/js/*.js').pipe(jshint());
});
gulp.task('serve', function() {
browserSync({
server: {
baseDir: "./",
middleware: [
modRewrite([
'!\\.\\w+$ /index.html [L]'
])
]
}
});
});
gulp.task('default', ['lint', 'serve'], function() {
gulp.watch('app/js/*.js', ['lint', browserSync.reload]);
});
角度路线文件:
$urlRouterProvider.otherwise("/home");
$stateProvider
.state('home', {
url: "/home",
templateUrl: "app/partials/home.html",
controller: 'HomeCtrl'
})
...
非常感谢!