lostyazilim
tr.link

Search console 404 hataları

9 Mesajlar 929 Okunma
acebozum
tr.link

Barun Barun 1910 Kullanıcı
  • Üyelik 17.12.2013
  • Yaş/Cinsiyet 29 / E
  • Meslek Radyasyon
  • Konum Ankara
  • Ad Soyad M** B**
  • Mesajlar 1639
  • Beğeniler 157 / 233
  • Ticaret 8, (%100)
https://mehmetbarun.com.tr/wordpress-404-sayfalari-anasayfaya-yonlendirme/ olması gereken bu fakat search console daki hatalar şu şekilde
https://mehmetbarun.com.tr/wordpress-404-sayfalari-anasayfaya-yonlendirme/https/mehmetbarun.com.tr

Bunu nasıl çözebilirim
Buradan yola çıkarak çözme ihtimalim var mı
#301 Redirects for .htaccess

#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html

#Redirect an entire site:
Redirect 301 / http://www.domain.com/

#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/

#Redirect a sub folder to another site
Redirect 301 /subfolder http://www.domain.com/

#This will redirect any file with the .html extension to use the same filename but use the .php extension instead.
RedirectMatch 301 (.*)\.html$ http://www.domain.com $1.php

##
#You can also perform 301 redirects using rewriting via .htaccess.
##

#Redirect from old domain to new domain
RewriteEngine on
RewriteBase /
RewriteRule (.*) http://www.newdomain.com/ $1 [R=301,L]

#Redirect to www location
RewriteEngine on
RewriteBase /
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/ $1 [r=301,nc]

#Redirect to www location with subdirectory
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/directory/index.html [R=301,NC]

#Redirect from old domain to new domain with full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*) http://www.newdomain.com %{REQUEST_URI} [R=302,NC]

#Redirect from old domain with subdirectory to new domain w/o subdirectory including full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/subdirname/(.*)$
RewriteRule ^(.*) http://www.katcode.com/ %1 [R=302,NC]

Rewrite and redirect URLs with query parameters (files placed in root directory)

Original URL:

http://www.example.com/index.php?id=1
Desired destination URL:

http://www.example.com/path-to-new-location/
.htaccess syntax:

RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^index\.php$ /path-to-new-location/? [L,R=301]
Redirect URLs with query parameters (files placed in subdirectory)

Original URL:

http://www.example.com/sub-dir/index.php?id=1
Desired destination URL:

http://www.example.com/path-to-new-location/
.htaccess syntax:

RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^sub-dir/index\.php$ /path-to-new-location/? [L,R=301]
Redirect one clean URL to a new clean URL

Original URL:

http://www.example.com/old-page/
Desired destination URL:
http://www.example.com/new-page/
.htaccess syntax:

RewriteEngine On
RewriteRule ^old-page/?$ $1/new-page$2 [R=301,L]
Rewrite and redirect URLs with query parameter to directory based structure, retaining query string in URL root level

Original URL:

http://www.example.com/index.php?id=100
Desired destination URL:

http://www.example.com/100/
.htaccess syntax:

RewriteEngine On
RewriteRule ^([^/d]+)/?$ index.php?id=$1 [QSA]
Rewrite URLs with query parameter to directory based structure, retaining query string parameter in URL subdirectory

Original URL:
http://www.example.com/index.php?category=fish
Desired destination URL:
http://www.example.com/category/fish/
.htaccess syntax:

RewriteEngine On
RewriteRule ^/?category/([^/d]+)/?$ index.php?category=$1 [L,QSA]
Domain change – redirect all incoming request from old to new domain (retain path)

RewriteEngine on
RewriteCond %{HTTP_HOST} ^example-old\.com$ [NC]
RewriteRule ^(.*)$ http://www.example-new.com/ $1 [R=301,L]
If you do not want to pass the path in the request to the new domain, change the last row to:

RewriteRule ^(.*)$ http://www.example-new.com/ [R=301,L]

#From blog.oldsite.com ->www.somewhere.com/blog/
retains path and query, and eliminates xtra blog path if domain is blog.oldsite.com/blog/
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI}/ blog
RewriteRule ^(.*) http://www.somewhere.com/ %{REQUEST_URI} [R=302,NC]
RewriteRule ^(.*) http://www.somewhere.com/blog/ %{REQUEST_URI} [R=302,NC]
 

 

wmaraci
reklam

mxaksoy mxaksoy Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 23.03.2018
  • Yaş/Cinsiyet 29 / E
  • Meslek Webmaster
  • Konum İstanbul Avrupa
  • Ad Soyad M** A**
  • Mesajlar 1358
  • Beğeniler 482 / 344
  • Ticaret 3, (%100)
404 Redirect eklentisini kurdunuz mu?
 

 

Barun Barun 1910 Kullanıcı
  • Üyelik 17.12.2013
  • Yaş/Cinsiyet 29 / E
  • Meslek Radyasyon
  • Konum Ankara
  • Ad Soyad M** B**
  • Mesajlar 1639
  • Beğeniler 157 / 233
  • Ticaret 8, (%100)

mxaksoy adlı üyeden alıntı

404 Redirect eklentisini kurdunuz mu?

Sorun tek linkte değil bütün linklerde var. .htaccess ile çözülebilir ama kodu bulamadım. Tek tek baş olacak gibi değil
 

 

mxaksoy mxaksoy Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 23.03.2018
  • Yaş/Cinsiyet 29 / E
  • Meslek Webmaster
  • Konum İstanbul Avrupa
  • Ad Soyad M** A**
  • Mesajlar 1358
  • Beğeniler 482 / 344
  • Ticaret 3, (%100)
Barun dediğim eklenti hata veren sayfaları fixler.
 

 

wmaraci
wmaraci

Barun Barun 1910 Kullanıcı
  • Üyelik 17.12.2013
  • Yaş/Cinsiyet 29 / E
  • Meslek Radyasyon
  • Konum Ankara
  • Ad Soyad M** B**
  • Mesajlar 1639
  • Beğeniler 157 / 233
  • Ticaret 8, (%100)

mxaksoy adlı üyeden alıntı

Barun dediğim eklenti hata veren sayfaları fixler.

Ama beni anasayfaya yönlendirecek o eklenti yaretçide sayfayı terk edecek hemen çıkma oranı yükselecek benim kalıcı bir çözüm bulmam gerekiyor
 

 

mxaksoy mxaksoy Üyeliği Durdurulmuş Banlı Kullanıcı
  • Üyelik 23.03.2018
  • Yaş/Cinsiyet 29 / E
  • Meslek Webmaster
  • Konum İstanbul Avrupa
  • Ad Soyad M** A**
  • Mesajlar 1358
  • Beğeniler 482 / 344
  • Ticaret 3, (%100)
Barun hocam skype live:mxaksoy ekleyin oradan halledelim sorunu
 

 

doktorYazar doktorYazar WM Aracı Kullanıcı
  • Üyelik 17.08.2017
  • Yaş/Cinsiyet 42 / K
  • Meslek Doktor
  • Konum Ankara
  • Ad Soyad H** İ**
  • Mesajlar 153
  • Beğeniler 77 / 20
  • Ticaret 7, (%100)
RewriteEngine On
RewriteBase /
RewriteRule mehmetbarun.com.tr(.*) https://mehmetbarun.com.tr/ [L]
Htaccess de bu yönlendirme kodunu kullanabilirsiniz anasayfaya ya da başka bir sayfaya toplu link yönlendirmesi için.
 

 

doktorYazar doktorYazar WM Aracı Kullanıcı
  • Üyelik 17.08.2017
  • Yaş/Cinsiyet 42 / K
  • Meslek Doktor
  • Konum Ankara
  • Ad Soyad H** İ**
  • Mesajlar 153
  • Beğeniler 77 / 20
  • Ticaret 7, (%100)

Barun adlı üyeden alıntı

Ama beni anasayfaya yönlendirecek o eklenti yaretçide sayfayı terk edecek hemen çıkma oranı yükselecek benim kalıcı bir çözüm bulmam gerekiyor


Hemen çıkma oranını etkileyeceğini düşünmüyorum; çünkü söylediğiniz şekildeki linklerin googlede indekslendiğini sanmıyorum.
 

 

Barun Barun 1910 Kullanıcı
  • Üyelik 17.12.2013
  • Yaş/Cinsiyet 29 / E
  • Meslek Radyasyon
  • Konum Ankara
  • Ad Soyad M** B**
  • Mesajlar 1639
  • Beğeniler 157 / 233
  • Ticaret 8, (%100)

mxaksoy adlı üyeden alıntı

Barun hocam skype live:mxaksoy ekleyin oradan halledelim sorunu

Ekledim hocam

doktorYazar adlı üyeden alıntı

Hemen çıkma oranını etkileyeceğini düşünmüyorum; çünkü söylediğiniz şekildeki linklerin googlede indekslendiğini sanmıyorum.

Haklısınız ama riske edemem ki

doktorYazar adlı üyeden alıntı

RewriteEngine On
RewriteBase /
RewriteRule mehmetbarun.com.tr(.*) https://mehmetbarun.com.tr/ [L]
Htaccess de bu yönlendirme kodunu kullanabilirsiniz anasayfaya ya da başka bir sayfaya toplu link yönlendirmesi için.


Son çare bunu kullanacağım hocam
 

 

wmaraci
wmaraci
Konuyu toplam 2 kişi okuyor. (0 kullanıcı ve 2 misafir)
Site Ayarları
  • Tema Seçeneği
  • Site Sesleri
  • Bildirimler
  • Özel Mesaj Al