Typecho伪静态

admin
2024-01-13 / 1 评论 / 67 阅读

Nginx环境

if (!-e $request_filename) {
    rewrite ^(.*)$ /index.php$1 last;
}

Apache环境

RewriteBase / 
RewriteCond %{REQUEST_FILENAME} !-f 
RewriteCond %{REQUEST_FILENAME} !-d 
RewriteRule ^(.*)$ index.php [L,E=PATH_INFO:$1]
0

评论 (1)

取消
  1. 头像
    Typecho
    Linux · Chrome . 内网IP

    欢迎加入 Typecho 大家族

    回复