版权属于:
Ginkgo
本文链接:
https://www.imao2.com/article/84.html(转载时请注明本文出处及文章链接)
作品采用:
已经安装过了的 typecho
迁移
一、
nginx 配置中配置伪静态
location /fetc/ {
if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php last;
}
if (!-f $request_filename){
rewrite (.*) /fetc/index.php last;
}
}
二、
登录站点后台设置站点地址