答案 0 :(得分:3)
格式化有点偏,但我认为原来的规则是
Redirect 301 /feed.php http://www.example.com/feed/
所以Nginx重写将是
rewrite ^/feed\.php http://www.example.com/feed/ permanent;
如果你read the documentation,那就不难了。
答案 1 :(得分:1)
使用以下bash one-liner,转换.htaccess文件中的Apache Redirect行:
while read LINE; do echo -e `echo $LINE | egrep '^Redirect' | cut -d' ' -f1-2` "{\n\treturn 301 `echo $LINE|cut -d' ' -f3`;\n}"; done < .htaccess
结果,
Redirect /feed.php http://www.example.com/feed/
...行打印为以下Nginx样式:
location /feed.php {
return 301 http://www.example.com/feed/;
}