今天给网站添加备案信息,在网上搜了一篇文章。具体操作如下:1、进入后台,找到控制台-外观2、点击编辑当前外观3、在右边点击footer.php4、添加如下代码<div class="blog-text-center"><a href="https://beian.miit.gov.cn/" target="_blank" rel="nofollow"><?php $this->options->bei(); ?></a></div>5、保存6、找到function.php,在themeConfig方法的第一行添加如下代码$bei = new Typecho_Widget_Helper_Form_Element_Text('bei', NULL, NULL, _t('工信部备案号'), _t('留空则不显示')); $form->addInput($bei->addRule('xssCheck', _t('工信部备案号不能使用

今天又搜了一下,找到了一个有用的帖子。我遇到的问题,之前别人也遇到了,并且解决了。最终nginx配置如下:location ~ .*\.php(\/.*)*$ { fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; include fastcgi.conf; client_max_body_size 20m; fastcgi_connect_timeout 30s; fastcgi_send_timeout 30s; fastcgi_read_timeout 30s; fastcgi_intercept_errors on; try_files $uri $uri/ /index.php?$query_string; set $path_info "";

把博客https化之后,遇到了一个问题,就是点击链接会提示404 not found.还不知道原因。尝试了网上的方案(如下),还是不行location ~* \.php$ { fastcgi_pass 127.0.0.1:9000; include fastcgi.conf; client_max_body_size 20m; fastcgi_connect_timeout 30s; fastcgi_send_timeout 30s; fastcgi_read_timeout 30s; fastcgi_intercept_errors on; try_files $uri $uri/ /index.php?$query_string; if (-f $request_filename/index.html){ rewrite (