没有更改 Typecho 的代码。好懵逼啊。 有大佬知道这是怎么回事吗?
1
123abcdf11345 2021-09-05 11:51:17 +08:00 1
我记得 joe 主题的右下方 feed 的超链接指向是./feed 对于文章页会出问题,可以手动改成 https://example.com/feed
|
2
OwO233 OP @123abcdf11345 #1 您好,我用的是 Bubble 的。我直接弄得 https://www.owo233.xyz/feed 但是反馈 nginx 404,QAQ
|
3
wdssmq 2021-09-05 15:43:46 +08:00 1
<link rel="alternate" type="application/rss+xml" title="叶清风的博客 » RSS 2.0" href="https://www.owo233.xyz/index.php/feed/" />
<link rel="alternate" type="application/rdf+xml" title="叶清风的博客 » RSS 1.0" href="https://www.owo233.xyz/index.php/feed/rss/" /> <link rel="alternate" type="application/atom+xml" title="叶清风的博客 » ATOM 1.0" href="https://www.owo233.xyz/index.php/feed/atom/" /> 没开伪静态 - - |
4
123abcdf11345 2021-09-05 15:44:37 +08:00 1
@OwO233 你没开伪静态吧,https://www.owo233.xyz/index.php/feed/ 是可以访问的,设置里面开下 rewrite,nginx 写下规则
|
5
OwO233 OP @123abcdf11345 @wdssmq 谢谢两位,,是我伪静态没有设置好。。QAQ
我这样配置的。。 ```伪静态 location /typecho/ { if (!-e $request_filename) { rewrite ^(.*)$ /typecho/index.php$1 last; } } ``` |