-
Notifications
You must be signed in to change notification settings - Fork 16
/
404.html
64 lines (58 loc) · 3.29 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
permalink: /404.html
layout: simple
---
<div align="center">
<h2 id="message" class="text-danger">Lanetli bir sayfadasın ziyaretçi!</h2>
<img id="wizard-image" width="50%" height="auto" src="{{ site.url }}/data/img/wizard.png" alt="Card image">
<p>Eğer bir hata olduğunu düşünüyorsanız <a href="{{ site.url }}/bildirim.html">bildirmekten</a> çekinmeyin lütfen.</p>
<div>
<script>
// Yönlendirme listesi
const redirects = {
"/docs/temel_linux/1.html": "/egitim/temel-linux/girizgah/",
"/docs/temel_linux/2.html": "/egitim/temel-linux/gerekli-ortamın-kurulması/",
"/docs/temel_linux/3.html": "/egitim/temel-linux/linux-nedir/",
"/docs/temel_linux/4.html": "/egitim/temel-linux/linux-kısayolları/",
"/docs/temel_linux/5.html": "/egitim/temel-linux/yardım-alma-komutları/",
"/docs/temel_linux/6.html": "/egitim/temel-linux/bilgi-alma-komutları/",
"/docs/temel_linux/7.html": "/egitim/temel-linux/dizinlerde-gezinmek/",
"/docs/temel_linux/8.html": "/egitim/temel-linux/dizinlerde-gezinmek/",
"/docs/temel_linux/9.html": "/egitim/temel-linux/metinsel-verileri-islemek/",
"/docs/temel_linux/10.html": "/egitim/temel-linux/arşivleme-sıkıştırma/",
"/docs/temel_linux/11.html": "/egitim/temel-linux/kullanıcı-ve-grup-yönetimi/",
"/docs/temel_linux/12.html": "/egitim/temel-linux/kullanıcı-ve-grup-yönetimi/",
"/docs/temel_linux/13.html": "/egitim/temel-linux/işlem-yönetimi/",
"/docs/temel_linux/14.html": "/egitim/temel-linux/disk-yönetimi/",
"/docs/temel_linux/15.html": "/egitim/temel-linux/servis-yönetimi/",
"/docs/temel_linux/16.html": "/egitim/temel-linux/kopyalama-taşıma-silme-işlemleri/",
"/docs/temel_linux/17.html": "/egitim/temel-linux/paket-yönetimi/",
"/docs/temel_linux/18.html": "/egitim/temel-linux/kabuk-genisletmeleri/",
"/docs/temel_linux/19.html": "/egitim/temel-linux/temel-ağ-komutları/",
"/docs/temel_linux/20.html": "/egitim/temel-linux/metin-editoru/",
"/docs/temel_linux/21.html": "/egitim/temel-linux/temel-ağ-komutları/",
"/docs/temel_linux/22.html": "/egitim/temel-linux/servis-yönetimi/",
"/docs/temel_linux/23.html": "/egitim/temel-linux/log-kayıtları-hakkında/",
"/docs/temel_linux/24.html": "/linux-arayuzunu-ozellestirmek",
"/hakkinda.html": "/hakkında.html",
};
// Geçerli sayfanın path'ini al
const currentPath = window.location.pathname;
// Mesaj ve görüntü elementlerini al
const messageElement = document.getElementById('message');
const wizardImage = document.getElementById('wizard-image');
// Eğer mevcut path yönlendirme listesinde varsa
if (redirects[currentPath]) {
// Kullanıcıya yönlendirme yapılacağını bildir
messageElement.textContent = "Bu sayfa taşınmış, doğru sayfaya yönlendiriliyorsunuz...";
// Görüntü dosyasını değiştir
wizardImage.src = "{{ site.url }}/data/img/wizard-redirect.png";
// Yönlendirmeyi belirli bir süre sonra gerçekleştirmek için
setTimeout(() => {
window.location.href = redirects[currentPath];
}, 3000); // 3 saniye bekleme süresi
} else {
// Eğer path listede yoksa 404 mesajını göster
messageElement.textContent = "Lanetli bir sayfadasın ziyaretçi!";
}
</script>