web2生成的angular2无法使用URL进行导航

时间:2016-11-13 16:12:24

标签: angular deployment webpack angular2-routing

我有一个使用angular2路由的angular2应用程序,webpack配置的dev和prod版本如此tutorial中所述。

当我使用dev选项,运行npm start时,一切正常,导航可以使用网站上的链接,也可以使用完整的网址http://localhost:3000/dashboard进行导航。 但是,当我使用prod选项,运行npm run build并将dist-folder输出部署到我的iis时,我无法再使用URL进行导航,我必须先转到http:/MyIp:3000/并且从那里我只能浏览网站上的链接。任何使用URL导航的尝试都会导致404错误。

此外,在prod模式下,当我刷新页面时,我收到了404错误。

有没有人遇到这个错误?并且有人知道如何解决它们吗?

更新

为webpack.common.js和webpack.prod.js添加我的代码可能有人会发现我忽略的错误......

我的webpack.common.js

var webpack = require('webpack');
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var helpers = require('./helpers');

module.exports = {
  entry: {
    'polyfills': './src/polyfills.ts',
    'vendor': './src/vendor.ts',
    'app': './src/app/main.ts'
  },

  resolve: {
    extensions: ['', '.ts', '.js']
  },

  module: {
    loaders: [
      {
        test: /\.ts$/,
        loaders: ['awesome-typescript-loader', 'angular2-template-loader']
      },
      {
        test: /\.html$/,
        loader: 'html'
      },
      {
        test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/,
        loader: 'file?name=assets/[name].[hash].[ext]'
      },
      {
        test: /\.css$/,
        exclude: helpers.root('src', 'app'),
        loader: ExtractTextPlugin.extract('style', 'css?sourceMap')
      },
      {
        test: /\.css$/,
        include: helpers.root('src', 'app'),
        loader: 'raw'
      }
    ]
  },

  plugins: [
    new webpack.optimize.CommonsChunkPlugin({
      name: ['app', 'vendor', 'polyfills']
    }),

    new HtmlWebpackPlugin({
      template: 'src/index.html'
    })
  ]
};

我的webpack.prod.js

var webpack = require('webpack');
var webpackMerge = require('webpack-merge');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var commonConfig = require('./webpack.common.js');
var helpers = require('./helpers');

const ENV = process.env.NODE_ENV = process.env.ENV = 'production';

module.exports = webpackMerge(commonConfig, {
  devtool: 'source-map',

  output: {
    path: helpers.root('dist'),
    publicPath: '/',
    filename: '[name].[hash].js',
    chunkFilename: '[id].[hash].chunk.js'
  },
  htmlLoader: {
    minimize: false // workaround for ng2
  },

  plugins: [
    new webpack.NoErrorsPlugin(),
    new webpack.optimize.DedupePlugin(),
    new webpack.optimize.UglifyJsPlugin({ // https://github.com/angular/angular/issues/10618
      mangle: {
        keep_fnames: true
      }
    }),
    new ExtractTextPlugin('[name].[hash].css'),
    new webpack.DefinePlugin({
      'process.env': {
        'ENV': JSON.stringify(ENV)
      }
    })
  ]
});

1 个答案:

答案 0 :(得分:3)

我们正在使用angular-cli,我甚至无法让dev构建工作(关于你的问题)。通过单击链接在应用程序中导航很好但是F5或直接点击深层链接不起作用。我们使用IIS中的以下URL重写规则解决了它(如果您还没有,请创建一个web.config并将其添加到根文件夹中):

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
    <rewrite>
      <rules>
        <rule name="Angular Routes" stopProcessing="true">
          <match url=".*" />
          <conditions logicalGrouping="MatchAll">
            <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
          </conditions>
          <action type="Rewrite" url="/" />
        </rule>
      </rules>
    </rewrite> 
  </system.webServer>
</configuration>

我不确定是否建议使用prod,但这是内部托管的,现在可以使用。