好,所以我刚刚启动了一个新网站,但是重定向存在一些问题。 htaccess重定向不喜欢处理php url中的值并将其推到新值,所以我得到了,但是我需要一点帮助
wordpress的重定向插件 面板 自己做
<?php
$redirect[0] = 'http://url-1.com';
$redirect[1] = 'http://url-2.com';
$redirect[2] = 'http://url-3.com';
$number = mt_rand(0,2);
header("Location:$redirect[$number]");
?>
我需要这样才能像这样
Page.php?redirect = name 重定向到网址
我知道该死的该死,但是如何使它成为正确的名称和要求呢?
所有旧网站的网址都是
article.php?articlelist=bobdo_14_ol
或article.php?articlelist=taco_23_tt
等
我正在尝试使他们重定向,但这超出了我的技能范围
答案 0 :(得分:0)
此代码效果很好 感谢您关于获取价值的想法
@ShellComponent class MyCommands {
@ShellMethod("Add two integers together.") def add(
@ShellOption(mandatory = true) a: Int,
@ShellOption(mandatory = true) b: Int): Int = a + b
}