Bu rehberde, HTTrack kullanarak hiçbir kod bilmeden bir web sitesini nasıl kopyalayabileceğini ve kendi domainine nasıl yükleyebileceğini öğreneceksin.
Bu site klonlama mesela bir kişinin sitesini html css dosyalarını yanin wep sitesinin görünen yüzünü kopyalamanıza yarar ama arkada giden gelen dosyaları değil ve bazı sitelerin buna karşı koruması ola bilir
⚖️ YASAL UYARI
This content is purely for educational and testing purposes.
Our goal is for web developers, cybersecurity enthusiasts, and anyone else who wants to learn to improve their ability to work with static websites.
❗ It is illegal and unethical to publish any site you clone as your own, use brand names, or create a false identity.
🔐 Sadece kendinize ait projelerde, offline testlerde veya açık izin verilen kaynaklarda kullanınız.
Eğitim var, dolandırıcılık yok. Oyunu kuralına göre oyna.
NEDİR BU SİTE KLONLAMA?
Site klonlama, bir internet sitesinin görünümünü ve içeriğini birebir kopyalamaktır. Amaç ne?
- Eğitim için incelemek
- Fake site senaryosu (etik amaçlı testlerde)
- Kendi projen için ilham almak
- Offline erişim (internetsiz gezmek için)
HANGİ SİTELER KLONLANABİLİR?
🔓Clonable sites:
- HTML tabanlı basit siteler
- CSS + JS ile hazırlanmış portfolyo, tanıtım siteleri
- Static blogs
- Landing page (ürün tanıtım sayfaları)
🚫Klonlanamayanlar (ya da çok zor):
- Dinamik içerikli siteler (örneğin: Facebook, Instagram)
- Oturum, giriş sistemi olan siteler
- Javascript ile anlık yüklenen içerikler (SPA’ler)
In short: “What you see visually is what it captures.”
But you cannot capture the server codes running behind the scenes (PHP, database etc. = NO).
WHAT IS REQUIRED
- Kali Linux (If not, first install from this article)
httrack
tool (This is the father of this, don't look for another tool)

1. Static Site Cloning Setup with HTTrack
Terminale şunu yaz:
sudo apt update
sudo apt install httrack -y
Done. Installed.
📥 2. Siteyi Klonla
Şu komutla istediğin siteyi kendi bilgisayarına çek:
httrack "https://targetefsite.com" -O ~/klon
You write the name of the site you want to clone in the
targetsite.com
section.
It puts everything in the~/klon
folder.
🧳 3. Klon Dosyalarını Hazırla
cd ~/clone/targetsite.com/
zip -r siteclone.zip *
If you want, make .zip
or throw it away as is. If there is only index.html
file, it's ok.

Klonladığın Siteyi Kendi Domainine Nasıl Yüklersin?
🔍 Domain Nereden Alınır?
💰 Cheapest Domain Sites:
- Namecheap.com – .xyz yıllık 1.5$
- Freenom.com – .tk, .ml, .ga → Bedava
- Porkbun.com – Ucuz .com alternatifi
- turkticaret.net – benimde kullandığım çok ucuza 100 tl ye yıllık .com veriyor

💾 Hosting Nereden?
- Bedava: GitHub Pages (statik site için birebir)
- Ücretsiz Https destekli: Cloudflare
- Uygun fiyatlı: Hostinger
- Ücretsiz ama kısıtlı: InfinityFree.net
Why do we need hosting because we need to publish our site on a server, you can do this from your own computer, but both the computer becomes slow and your site and the computer must always be open, so hosting companies always keep your site open on their own servers, I recommend hostinger
📤 5. Site Dosyalarını Yükle (CPanel için)
- Enter your hosting panel
- Go to File manager> public_html folder
- Klonladığın dosyaları buraya yükle (direk httrack’ın indirdiği klasörü koy )
- If
index.html
exists, it will open automatically - Bitti! 🎯
🔐 HTTPS (SSL) İstersen:
Cloudflare’dan bedava al:
- Domaini Cloudflare’a bağla
- SSL bölümünden “Full” modunu seç
- 5 dakika içinde HTTPS olur
✅ SONUÇ
Now you can publish any simple site you want under your own domain.
You can either display it as a portfolio or use it for testing purposes.
But remember:
❗If the site you cloned is not yours, use it only for education/testing purposes.
❗Publishing under a different name in real life is not ethical or legal!
🎁 BONUS – KENDİ KALİ KURULUM REHBERİM
📌 Don't have Kali installed?
Install like a charm from here: 👉 Kali Linux Getting Started Guide
[…] Wep sitesi klonlama nasıl yapılır? […]