Hallo,
I want to migrate a blog from s9y, which is a php based blog, to jekyll
I used beautiful-jekyll
to host an jekyll instance on github: aisbergde.github.io
I also found jekyll-redirect-from
which should crete redirections, and it is in the list of plugins supported by github pages
I have read sometimes that github ignores the gemfile and nothing needs to be included, so I did not change it and it is still (whatever this means)
source "https://rubygems.org"
gemspec
I added one entry to the _config.xml
plugins:
- jekyll-paginate
- jekyll-sitemap
- jekyll-redirect-from
and I added something into the yaml front matter of one post file, like
---
title: Warum ich seit 2017 den AnalyticsCreator verwende
subtitle: Und warum mich Wherscape nicht ĂĽberzeugt hat
tags: [analyticscreator, dwh-automatisierung, etl, elt, dwh, wherescape, data-lineage, slow-changing-dimension, scd, ssas-tabular, ssas]
redirect_from:
-/test/001.html
---
but nothing happens:
- no
test
folder is created in the repository (or will this be a virtual folder?) - no redirection happens when I call:
What’s my mistake?
if I get it work, my finally goal would be to emulate a php call:
aisbergde.github.io/index.php?/archives/1-Warum-ich-seit-2017-den-AnalyticsCreator-verwende.html
will this work at all?
Maybe I can’t use the redirect method at all?
redirect_from:
-/index.php?/archives/1-Warum-ich-seit-2017-den-AnalyticsCreator-verwende.html
-/test/001.html