Saas个人主页系统伪静态规则

东君 发布于 阅读:22

Nginx下的规则

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