标签: php nginx nginx-location
我正在使用以下内容在nginx上生成干净的url,但它返回404错误。
docker-compose exec mongo sh docker-compose exec nats sh
这是我要改写为
location /biz { rewrite ^biz/([a-z0-9-]+)/([a-z0-9-]+)?$ shop.php?city=$1&url=$2 permanent; }