0

我们目前运行 Apache 并使用 .htaccess 在几个脚本中重写 URL,包括 WordPress 和 OpenCart。

出于性能原因,我们希望迁移到 nginX+Varnish 堆栈。我们如何在 nginX 中处理 URL 重写,我们是否可以自动化它,就像 WordPress 和 OpenCart 写入(写入).htaccess 一样

4

1 回答 1

2
location ^~ /location {
  # some code else rewrite
  rewrite ^/your_rules # Or
  try_files $uri @rewrite_loc;
}

location @rewrite_loc {
  # some code
  # I guess you are not talking about proxy_pass
}

是的,您可以使用NginxApacheand一起使用的方式.htaccess,只需要定义好的重写规则。

于 2013-03-25T21:34:58.873 回答