> Apache 环境
<IfModule mod\_rewrite.c>
RewriteEngine On
# 下面是在根目录,文件夹要修改路径,如 /oldtang/
RewriteBase /
RewriteCond %{REQUEST\_FILENAME} !-f
RewriteCond %{REQUEST\_FILENAME} !-d
RewriteRule ^(.\*)\$ /index.php/\$1 [L]
上面面代码保存为 .htaccess
放在typecho跟目录下
NGINX 环境
rewrite ^(.\*)\$ /index.php\$1 last;
}
上面面代码 NGINX.conf 放在typecho跟目录下