RewriteEngine On
# 1️⃣ HTTP -> HTTPS + www -> non-www
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www.hesaplayicim.com$ [NC]
RewriteRule ^(.*)$ https://hesaplayicim.com/$1 [R=301,L]
# 2️⃣ .html görünen URL'leri uzantısız hale getir
RewriteCond %{THE_REQUEST} s/+(.+?).html[s?]
RewriteRule ^ %1 [R=301,L]
# 3️⃣ /src/pages/ klasörünü gizle + .html otomatik ekle
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ src/pages/$1.html [L]
Bu kod çalışır mı ?
3
●182
- 30-12-2025, 00:00:54
- 30-12-2025, 00:01:26.htaccess yapılandırmasını fazla beceremiyorum yeni öğrendimde.