- Support virtual URLs as source URLs.
- Support
countdown
. - Work with static
base
and dynamic base.
In the site development of vuepress, a small directory structure adjustment will invalidate some URLs, but these URLs may have been published. With this plugin, you can keep those disappeared URLs forever.
yarn add -D @vuepress/plugin-html-redirect
# OR npm install -D @vuepress/plugin-html-redirect
- Write redirects:
The agreed file to write redirects
config is /path/to/.vuepress/redirects
, whose format is as follows:
[url] [redirect_url]
[url] [redirect_url]
[url] [redirect_url]
...
example:
/2020/03/27/webpack-5-module-federation/ /translations/2020/03/27/webpack-5-module-federation/
- Simple usage:
// .vuepress/config.js
module.exports = {
plugins: [
'@vuepress/html-redirect', // OR full name: '@vuepress/plugin-html-redirect'
],
}
- Disable
countdown
:
// .vuepress/config.js
module.exports = {
plugins: [
['@vuepress/html-redirect', {
countdown: 0,
}],
],
}
It means that the publc path will be different acccording to the NEV you set, and the router base will be '/'
when the host is hostA
, and '/blog/'
when the host is hostB
.
- Type:
string
- Description: Control how many seconds the page will be redirected, defaults to
3
.
- Support directory redirects.
PR welcome!
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request :D
@vuepress/plugin-html-redirect © ULIVZ, Released under the MIT License.
github.com/ulivz · Twitter @_ulivz