Skip to content

Commit

Permalink
Add 404 example
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane committed Oct 22, 2015
1 parent b5218cd commit 45fc26f
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions examples/404.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/**
*
* Install:
* npm install browser-sync
*
* Run:
* node <yourfile.js>
*
* This example will redirect all 404 requests to a
* custom 404.html page
*
*/

"use strict";

var browserSync = require("browser-sync").create();

browserSync.init({
files: ["app/css/*.css"],
server: {
baseDir: "app"
}
}, function (err, bs) {
bs.addMiddleware("*", function (req, res) {
res.writeHead(302, {
"location": "404.html"
});
res.end('Redirecting!');
});
});

0 comments on commit 45fc26f

Please sign in to comment.