当前位置:网站首页>Pseudo static setting of Typecho - starze V Club
Pseudo static setting of Typecho - starze V Club
2022-06-11 00:00:00 【Xingze V Club】
This site provides two kinds of pseudo static settings , It's all based on Nginx Of . One is the official version , The other is the optimized version , This site uses the optimized version .
Official edition
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}Optimized version
location / {
index index.html index.php;
if (-f $request_filename/index.html) {
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php) {
rewrite (.*) $1/index.php;
}
if (!-f $request_filename) {
rewrite (.*) /index.php;
}
}this paper
边栏推荐
猜你喜欢

LabVIEW用高速数据流盘

【Pygame小游戏】趣味益智游戏 :打地鼠,看一下能打多少只呢?(附源码)

LeetCode 501 :二叉搜索樹中的眾數

Self made app connected to onenet --- realize data monitoring and distribution control (mqtt)

IGBT与三代半导体SiC双脉冲测试方案

LabVIEW打开其他EXE程序

LabVIEW displays the time and date on the waveform chart or waveform chart

B 树的简单认识

LabVIEW pictures look bright or dark after being cast from 16 bits to 8 bits

都说验证码是爬虫中的一道坎,看我只用五行代码就突破它。
随机推荐
Basic operation of OpenCV actual combat image: this effect amazed everyone (with code analysis)
Easyrecovery15 simple and convenient data recovery tool
Lambda 学习记录
LabVIEW用高速数据流盘
苹果CMS采集站源码-搭建教程-附带源码-全新源码-开发文档
Collection delete element technique removeif
flutter 如何去掉listview顶部空白的问题
Error report of curl import postman
Apple CMS collection station source code - building tutorial - attached source code - new source code - development documents
2022年高考量化卷|请各位量化考生答题
Leetcode 501: mode dans l'arbre de recherche binaire
[pyGame collection] please check the game guide through childhood: are there any games you have played? (attach five source codes for self access)
关于优化API接口响应速度
自制APP连接OneNET---实现数据监控和下发控制(MQTT)
示波器和频谱分析仪的区别
[pyGame collection] memory killing - "Childhood Games", how many shots did you get? (attach five source codes for self access)
【Pygame小遊戲】別找了,休閑遊戲專題來了丨泡泡龍小程序——休閑遊戲研發推薦
LabVIEW prohibits other multi-core processing applications from executing on all cores
干货丨MapReduce的工作流程是怎样的?
LabVIEW和VDM提取色彩和生成灰度图像