首页 > 技术文章 > phpstudy+nigix+larval伪静态配置

zyfeng 2020-07-02 09:38 原文

# Check if a file exists, or route it to index.php.
try_files $uri $uri/ /exploit/index.php?$query_string;
if (!-e $request_filename) {
    rewrite  ^(.*)$  /index.php?s=$1  last;
    break;
}

 

推荐阅读