Anasayfamı başka bir sayfaya yönlendirmek istiyorum?
4
●304
- 15-08-2010, 15:52:20Üyeliği durduruldu
<meta http-equiv="refresh" content="zamanıyaz;URL=http://www.site.com">
<meta http-equiv="refresh" content="zamanıyaz;URL=http://www.site.com/x">
.Htaccess yönlendirmesi
Options +FollowSymlinks RewriteEngine on rewritecond %{http_host} ^siteniz.com [nc] rewriterule ^(.*)$ http://www.siteniz.com/$1 [r=301,nc]PHP için 301 yönlendirmesi
<? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.siteniz.com" ); ?>
ASP için 301 yönlendirmesi
<%@ Language=VBScript %> <% Response.Status="301 Moved Permanently"; Response.AddHeader("Location","http://www.new-url.com/"); %>*Alintidir - 15-08-2010, 16:25:00Üyeliği durdurulduHocam php ile yönlendirmek istiyorsanız şu kodları vereyim:
Siteye girildiği gibi oraya yönlendirilsin istiyorsanız:
header("Location: http://gidilecekadres.com");Girdikten bir süre sonra yönlensin istiyorsanız (3 sn örnek olarak)
header("Refresh:3;url=http://gidilecekadres.com")Php ile bu şekilde yapılır hocam.