nginx的重写和url美化

1.location / {
    try_files $uri $uri/ /index.php?$query_string;
}
2.
location / {
    if ( !-e $request_filename ) {
        rewrite ^/(.*)$ /index.php/$1 last;
        breakl
    }
}

两种方式 都可以

你可能感兴趣的:(php)