Şu anda YOURLS PHP URL shorterning komut dosyası kullanıyorum.
Onlar PHP başlık konumu ve javascript ile hem yönlendirmeyi destekleyen gibi onların functions.php görünüyor.
Ben yönlendirme önce bana mesaj gösterecektir, hangi javascript ile yönlendirmek istiyorum. Ben functions.php içinde bu kodlama bulundu
// 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;
}
}
Ama bunu yapmak için nasıl bilmiyorum. Bu kodlama anda yorumladı ya mı? I javascript ile yönlendirmek için ne değiştirmek gerekir?
Bana yardım edin. Teşekkürler.