我刚刚用 Jekyll和gitpage构建了一个个人博客。 首先它似乎运作良好。但最近我发现在本地和生产服务器,它无法从/ tags页面和/类别页面加载任何帖子(这两个是好的)。我只能从/博客页面加载帖子(页面显示所有帖子)。我尝试更改_config.yml中的一些配置,有时我成功加载帖子但丢失了css.Now我不知道如何解决这个问题?
在本地地址这些网址是好的:
127.0.0.1:4000
127.0.0.1:4000/#blog
127.0.0.1:4000/2017/How-to-ask/
127.0.0.1:4000/categories/
127.0.0.1:4000/tags/
但是在最后2页,无论我点击哪个帖子,页面都会丢失,网址会像这样:
0.0.7.225/Frequent-errors-when-learning-ruby-on-rails/
0.0.7.225/Linux-command-grep/
为什么带前缀的网址会变为0.0.7.225 /
这是我的_config.yml
# Site settings
title: Caven's Home
description: 'My home.'
url: 'https://gitcavendish.github.io'
baseurl: '/'
# google_analytics: 'UA-XXXXXX-X'
# disqus_shortname: 'your-disqus-name'
author:
name: 'Caven'
email:
twitter_username:
facebook_username:
github_username: gitCavendish
linkedin_username:
defaults:
-
scope:
path: ''
type: 'posts'
values:
layout: 'post'
# Build settings
destination: _site
paginate: 10
permalink: /:year/:title/
markdown: kramdown
highlighter: rouge
kramdown:
# use Github Flavored Markdown
input: GFM
# do not replace newlines by <br>s
hard_wrap: false
gems: ['jekyll-paginate']
exclude: ['README.md', 'Gemfile', 'Gemfile.lock', 'screenshot.png']
_config.yml
来解决此问题?这是博客的回购:https://github.com/gitCavendish/gitCavendish.github.io
答案 0 :(得分:1)
要解决此问题,请在'categories.html'文件中更改此内容:
{{ post.url | prepend: site.baseurl }}
进入这个:
{{ post.url }}
如果有人知道为什么早先的陈述是错的,请赐教。