Yvanの平行时空

  • 首页
  • 标签
  • 归档
  • 关于
  • 搜索
  • 文章目录
  • 站点概览
Yvan

Yvan

若当初的你,和现在的我,可以重来过
61 日志
3 分类
17 标签
GitHub Weibo
链接
  • BnArD
  • YY哥

Rewrite

发表于 2015-02-01 分类于 技术宅 Disqus:

nginx for wordpress

1
2
3
4
5
location / {
root /data/Yvanz;
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
}

nginx for thinkphp

1
2
3
4
5
6
7
location / {
index index.php;
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
# 运维
林俊杰的歌,是自己的年少时光
为Linux开启两步验证
皖ICP备15000396号-1
© 2012 – 2023 Yvan
由 Hexo & NexT.Mist 强力驱动
0%