macro_rules! temp_redirect {
($url:expr) => { ... };
($url:expr, [ $( ($key:expr, $value:expr) ),* $(,)? ]) => { ... };
}Expand description
Produces HTTP 307 TEMPORARY REDIRECT response
ยงExample
use volga::temp_redirect;
let url = "https://www.rust-lang.org/";
temp_redirect!(url);