如前所述
/movies/the-last-song.html
现在我拥有了:
/movie/the-last-song
目前我正在尝试使用此功能但不起作用。
rewrite ^/movies/(.*)$.html /movie/$1 permanent;
我感谢任何帮助。感谢。
答案 0 :(得分:0)
删除正则表达式中的$
符号。它代表行尾,因此永远不会匹配.html
。您还应该将.
转义为\.
。
rewrite ^/movies/(.*)\.html /movie/$1 permanent;