xaoxuu / hexo-theme-stellar

内置文档系统的简约商务风Hexo主题,支持大量的标签组件和动态数据组件。
https://xaoxuu.com/wiki/stellar/
MIT License
1.36k stars 329 forks source link

fix: link path in nav_tabs_blog.ejs #508

Closed L33Z22L11 closed 3 months ago

L33Z22L11 commented 3 months ago

群友在 nginx 服务器上部署遇到问题,首页导航栏的“标签”“分类”等按钮链接应当尾随斜杠,否则默认配置下无法访问。

另外,也可添加以下 nginx 配置解决问题。

    index index.html;
    location / {
        try_files $uri $uri.html $uri/ =404;
    }
    error_page 404 /404.html;
stackblitz[bot] commented 3 months ago

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.