From d450e62f50588850b29c5115ed1c6bf33ca65eac Mon Sep 17 00:00:00 2001 From: Angelo Anolin Date: Fri, 10 Mar 2017 20:06:28 -0700 Subject: [PATCH 1/2] Add configuration settings for IIS (Windows) --- docs/en/essentials/history-mode.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/docs/en/essentials/history-mode.md b/docs/en/essentials/history-mode.md index 56c55ffdc..05e37a683 100644 --- a/docs/en/essentials/history-mode.md +++ b/docs/en/essentials/history-mode.md @@ -44,6 +44,34 @@ location / { For Node.js/Express, consider using [connect-history-api-fallback middleware](https://github.com/bripkens/connect-history-api-fallback). +### Internet Information Services (IIS) +``` + + + + + + + + + + + + + + + + + + + + + + + + +``` + ## Caveat There is a caveat to this: Your server will no longer report 404 errors as all not-found paths now serve up your `index.html` file. To get around the issue, you should implement a catch-all route within your Vue app to show a 404 page: From 280a8741947ec63942e9d5e3f0bbdbbeb29c4181 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Sat, 11 Mar 2017 11:16:37 +0100 Subject: [PATCH 2/2] Update history-mode.md --- docs/en/essentials/history-mode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/essentials/history-mode.md b/docs/en/essentials/history-mode.md index 05e37a683..ad1702e4f 100644 --- a/docs/en/essentials/history-mode.md +++ b/docs/en/essentials/history-mode.md @@ -44,7 +44,7 @@ location / { For Node.js/Express, consider using [connect-history-api-fallback middleware](https://github.com/bripkens/connect-history-api-fallback). -### Internet Information Services (IIS) +#### Internet Information Services (IIS) ```