nginx 开启rewrite thinkcmf
Posted 认真生活、快乐工作 - 马云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 开启rewrite thinkcmf相关的知识,希望对你有一定的参考价值。
server{
... 省略
location / {
index index.php index.html index.htm;
#如果请求既不是一个文件,也不是一个目录,则执行一下重写规则
if (!-e $request_filename)
{
#地址作为将参数rewrite到index.php上。
rewrite ^/(.*)$ /index.php?s=$1;
#若是子目录则使用下面这句,将subdir改成目录名称即可。
#rewrite ^/subdir/(.*)$ /subdir/index.php?s=$1;
}
}
... 省略
}
以上是关于nginx 开启rewrite thinkcmf的主要内容,如果未能解决你的问题,请参考以下文章
nginx 隐藏index.php 并开启rewrite日志调试