我有问题从/index.php?q=account&page=delete&pid=123重写网址到/ account / delete / 123
这是我的nginx配置
location / {
rewrite ^/account/(undelete|delete|hide|unhide)/([0-9]+)/?$ /index.php?q=account&page=$1&pid=$2 last;
}
我的nginx无法启动此配置并且它没有记录任何错误但是我已经尝试了nginx -t命令并且它说测试成功
答案 0 :(得分:0)
我认为这不是nginx重写的好用。它看起来更像是一个try_files案例。像
这样的东西
location ~ ^/account/(undelete|delete|hide|unhide)/([0-9]+)/?$ {
try_files $uri $uri/ /index.php?q=account&page=$1&pid=$2 ;
}
可能需要一些额外的微调,等等。