有些初次用Typecho的在Typecho安装好后发现后台地址和文章内容打开都是404,这是为什么呢,其实这是Nginx对pathinfo支持不够的问题,需要手动添加地址重写代码。
1、找到配置文件,如果你也是LNMP的话就是在/usr/local/nginx/conf/vhost/
2、找到你所在网站的youname.com.conf
文件打开
找到这一行:
include enable-php.conf;
将这一行改为:
include enable-php-pathinfo.conf;
然后重启Nginx即可生效
sudo service nginx restart