如果第一个链接返回“404 Not Found”,我如何重定向到另一个链接?
我尝试了什么
location ^~ /video/ {
rewrite ^/video/(\w+)/(.+)$ /get.php?hash=$1&filename=$2 last;
rewrite ^/video/(\w+)/(.+)$ http://domain.com/get.php?hash=$1&filename=$2 last;
root /storage/;
}
答案 0 :(得分:1)
您可以将error_page
指令添加到您的nginx location
块:
请参阅nginx documentation reference。
location ^~ /video/ {
error_page 404 /video/404.php;
}
答案 1 :(得分:0)