标签: nginx rewrite
我需要将domain.ltd/dev/*.html等所有请求重写为domain.ltd/dev/index.php
location ~ /dev/\.html { rewrite ^ /dev/index.php last; }
这不起作用
答案 0 :(得分:0)
location ~ ^/dev/.*\.html { rewrite ^ /dev/index.php last; }