Nginx将所有html重写为php

时间:2014-01-07 20:19:26

标签: nginx rewrite

我需要将domain.ltd/dev/*.html等所有请求重写为domain.ltd/dev/index.php

location ~ /dev/\.html {
    rewrite ^ /dev/index.php last;
}

这不起作用

1 个答案:

答案 0 :(得分:0)

location ~ ^/dev/.*\.html {
    rewrite ^ /dev/index.php last;
}