nginx redirect /videos/(.*)/(.*).html到/video/(.*)/(.*)

时间:2012-03-15 19:09:26

标签: html nginx http-status-code-404 redirect

你好我真的需要你的帮助abour nginx重定向。所以我有这个旧网址: http://www.website.com/videos/bla-bla.html(网址重写)我想将301重定向到 http://www.website.com/video/bla-bla 我用PHP做了但我有一个404错误,因为.html文件不存在。 那你能帮帮我吗?我搜索了网络的每个地方,我找不到答案。 :)

1 个答案:

答案 0 :(得分:0)

我认为你需要做这样的事情:

rewrite ^/videos/(.*)\.html$ /video/$1 permanent;