目前我正在使用您的PHP URL 缩短脚本。
在他们的functions.php中,似乎他们支持使用PHP标头位置和javascript的重定向。
我想用 javascript 重定向,它会在重定向之前向我显示消息。我在functions.php中找到了这个编码
// Redirect to another page using Javascript. Set optional (bool)$dontwait to false to force manual redirection (make sure a message has been read by user)
function yourls_redirect_javascript( $location, $dontwait = true ) {
if( $dontwait ) {
echo <<<REDIR
<script type="text/javascript">
window.location="$location";
</script>
<small>(if you are not redirected after 10 seconds, please <a href="$location">click here</a>)</small>
REDIR;
} else {
echo <<<MANUAL
<p>Please <a href="$location">click here</a></p>
MANUAL;
}
}
但我不知道该怎么做。该编码当前是否已注释或?我应该改变什么来使用 javascript 重定向?
请帮帮我。谢谢。