Nginx环境下安装Cloudreve实行静态化的方法

对于Nginx服务器,以下是一个可供参考的配置

location / {
   if (!-e $request_filename) {
   rewrite  ^(.*)$  /index.php?s=/$1  last;
   break;
    }
 }

如果你的应用安装在二级目录,Nginx的伪静态方法设置如下,其中youdomain的英文所在的目录名称。

location /youdomain/ {
    if (!-e $request_filename){
        rewrite  ^/youdomain/(.*)$  /youdomain/index.php?s=/$1  last;
    }
}

然后重启Nginx
© 版权声明
THE END
請多多支持
点赞0
评论 抢沙发

    暂无评论内容