Nginx 重写模块(Catch-all)

Nginx 重写模块(Catch-all)

我是 Nginx 新手,我该如何重写这个 mod_rewrite 以便它可以在 Nginx 中工作?

RewriteEngine On
RewriteRule (.*) index.php

我尝试过这个,但是没有用。

location / {

    (...)

    reqrite (.*) /index.php last;

}

谢谢!

答案1

尝试:

location / {
    rewrite ^(.*)$ /index.php last;
}

相关内容