Nginx下ThinkPHP的伪静态设置 Rewrite rules

Satoshi

Moderator
NGINX:
location ~* (runtime|application)/{
    return 403;
}
location / {
    if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;   break;
    }
}
 
后退
顶部