1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Hugo で記事の URL にエイリアスを設定する

Posted at

はじめに

  • 静的サイトジェネレータ Hugo の設定のお話です
  • 記事が増えると、 Web サイトを整理したくなりますよね。また、 URL を後から変えたくなることもあります。
  • ただ、そうするとどこかからリンクされているページであればリンク切れを起こしてしまい、全部修正して回る羽目になります
  • 自分のサイト内のリンクであればそれでもいいかも知れませんが、サイト外からリンクされている場合にはそういう訳にもいかないでしょう
  • そのような場合は、記事にエイリアスを設定すれば解決します

検証環境

  • hugo v0.93.3

エイリアスの設定

  • ページヘッダの Front Matter に aliases を記載することで、通常の URL に加えて、エイリアスによるアクセスが可能となります
  • 実際には、エイリアスにアクセスすると本来の URL にリダイレクトされます
iosdc2019day1.md(抜粋)
+++
title = "iOSDC 2019 に Mac の環境構築に関する内容で登壇してきました"
date = "2019-09-07T07:33:45+09:00"
draft = false
toc = true
tags = [ "iOSDC", "iOS", "Swift", "macOS" ]
aliases = [ "/posts/iosdc2019day1/" ]
ogimage = "images/open_graph_logo.png"
+++

[iOSDC 2019 に Mac の環境構築の内容で LT 登壇します]({{< ref "/2019/iosdc2019pre.md">}}) で書いていましたが…

まとめ

  • 一度公開した Web ページの URL を変えるのは、いろいろと面倒です
    • でもやりたくなっちゃう
  • そんな時は、この記事のようにエイリアスで対応しましょう

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?