Saas个人主页系统伪静态规则
Nginx下的规则
if (!-e $request_filename) {
rewrite ^/(.*)$ /router.php/$1 last;
}
location / {
index router.php index.php index.html;
}Nginx下的规则
if (!-e $request_filename) {
rewrite ^/(.*)$ /router.php/$1 last;
}
location / {
index router.php index.php index.html;
}