mdserver-web/rewrite/nginx/typecho.conf

14 lines
235 B
Plaintext
Executable File

location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php$1 last;
}
}
# 不需要,可以删除
location /typecho/ {
if (!-e $request_filename) {
rewrite ^(.*)$ /typecho/index.php$1 last;
}
}