6

当我运行 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'
    })
...

非常感谢!

Github:https ://github.com/yhjor1212/angular-fire-powder

4

2 回答 2

3

在 modRewrite 中使用此代码:

['^([^.]+)$ /index.html [L]']

例子:

gulp.task('serve', function() {
  browserSync({
      server: {
          baseDir: "./",
          middleware: [
              modRewrite(['^([^.]+)$ /index.html [L]'])
          ]
      }
  });
});
于 2015-03-18T12:11:09.810 回答
0

抱歉,我不了解 gulp,但使用 Gruntfile.js,我使用 modRewrite 模块修复了中间件部分,如下所示:

var modRewrite = require('connect-modrewrite');

...

grunt.initConfig({
    ...
    browserSync: {
        ...
        options: {
            server: {
                middleware: [
                    modRewrite(['!\.html|\.js|\.css|\.png$ /index.html [L]'])
                ]
            }
        }
...

完美运行!

于 2015-08-04T08:11:45.373 回答