如何将 nginx 转换为 Apache 重写?

如何将 nginx 转换为 Apache 重写?

我的本地机器是 Apache2.4,这是 nginx 上的重定向方案。如何使用 RewriteRules 编写它?

location / {
 if (!-e $request_filename) {
   rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
 }
 rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
}
location ^~ /plugins {
  deny all;
}
location ^~ /includes {
  deny all;
}

相关内容