htaccess redirect

Mene zanima če se da z htaccess redirectad na drugo stran (domeno) po xx sekundah

Probal sem z tem pa ne dela. Ali se da to naredit z kakšno php skripto ?
RewriteEngine On
RewriteBase /

RewriteCond %{TIMESEC} <30
RewriteRule ^$ http://site.com [L]
RewriteCond %{TIME
SEC} >29
RewriteRule ^$ http://site.com [L]

2 odgovora

Lahko tut tko.

<head>
<meta http-equiv="refresh" content="5; URL=tvojastran.si">
</head>

3

Z htaccessom to ne bo šlo:
malo branja o TIME_SEC ipd.

Zeko je pokazal eno varianto, druga je tudi z JavaScriptom:

<script language="javascript">
setTimeout("top.location.href = 'http://www.novastran.si/'",5000);
</script>

Namesto "top.location.href" lahko uporabiš tudi "window.location".

1