GitHub Pages - Url Overwrite Support

I have a GitHub page for the site I'm working on, following the steps given here ( https://pages.github.com/ )

The site I have installed is currently hosted on IIS and uses the URL Rewrite module.

Is there an equivalent module or similar that I could use to rewrite specific URL requests in my application?

+6
source share
1 answer

For security reasons, Github pages do not allow server configuration files, so URL rewriting is not performed.

But you can use html redirection with jekyll-redirect-from .

Here's how github pages are advised to redirect .

+6
source

Source: https://habr.com/ru/post/984552/


All Articles