标签: php html apache redirect include
我怎么能每10秒包含一个放在我的根文件夹中的不同html页面?我需要在10秒内更改主页,我必须使用PHP代码而不使用.htaccsess文件。 请有人帮忙
我试过这个
<?php $redirectionTime = 5; $newPageUrl = "vrnjacka_banja2.php"; header( "Refresh: $redirectionTime; url=$newPageUrl" ); ?>