-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat($core): redirects for clean urls (#1269)
- Loading branch information
Showing
2 changed files
with
56 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// In VuePress, we have following convention about routing: | ||
// | ||
// - `/foo/` means source file is `/foo/{README|index}.md` | ||
// - `/foo.html` means your source file is `/foo.md` | ||
// | ||
// The original design of VuePress relied on above two styles | ||
// of routing, especially the calculation involved of routes at | ||
// default theme. so we can't easily modify `/foo.html` directly | ||
// to `/foo` (i.e. remove html suffix) | ||
// | ||
// This "temporary" utility handles redirect of clean urls, with | ||
// this utility, you'll get: | ||
// | ||
// For unknown request `/foo` | ||
// - redirect to `/foo.html` if it exists | ||
// - redirect to `/foo/` if it exists | ||
// | ||
// For unknown request `/foo/` | ||
// - redirect to `/foo.html` if it exists | ||
// | ||
// If all the above redirect rules don't exist, you'll get a 404 | ||
|
||
export function handleRedirectForCleanUrls (router) { | ||
router.beforeEach((to, from, next) => { | ||
if (isRouteExists(router, to.path)) { | ||
next() | ||
} else { | ||
if (!/(\/|\.html)$/.test(to.path)) { | ||
const endingSlashUrl = to.path + '/' | ||
const endingHtmlUrl = to.path + '.html' | ||
if (isRouteExists(router, endingHtmlUrl)) { | ||
next(endingHtmlUrl) | ||
} else if (isRouteExists(router, endingSlashUrl)) { | ||
next(endingSlashUrl) | ||
} else { | ||
next() | ||
} | ||
} else if (/\/$/.test(to.path)) { | ||
const endingHtmlUrl = to.path.replace(/\/$/, '') + '.html' | ||
if (isRouteExists(router, endingHtmlUrl)) { | ||
next(endingHtmlUrl) | ||
} else { | ||
next() | ||
} | ||
} else { | ||
next() | ||
} | ||
} | ||
}) | ||
} | ||
|
||
function isRouteExists (router, path) { | ||
return router.options.routes.filter(route => route.path === path).length > 0 | ||
} |