欢迎访问服务器技术网-www.fuwuqijishu.com

安装Typecho到二级目录文件夹中伪静态设置方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 116次浏览 0个评论 扫描二维码

今天有遇到一个网友在安装Typecho程序的时候需要设置伪静态,开始我告诉他直接在使用的配置WEB环境中直接选择Typecho伪静态 就可以了,哪里有这么复杂的事情。然后发现他是希望安装在二级文件夹中的,并不是在根目录,所以稍微需要手工操作一下下。

location /subfile/ {
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 (.*) /subfile/index.php last;
}
}

这位同学使用的是Nginx 引擎环境,所以直接在配置的CONF文件中修改或者添加上面的配置文件,在红色的文件夹名称换成自己的。

安装Typecho到二级目录文件夹中伪静态设置方法

最后重启Nginx配置,以及在安装完毕Typecho程序之后,需要在后台启动伪静态。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2202.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900