Günaydın,
SEO konusunda oldukça yeniyim ve web sitemi bing’de dizine eklerken ve site:something.be ile web sitemi ararken aşağıdaki sorunla karşılaşıyorum:
Ana sayfa geri döner "301 Kalıcı Olarak Taşındı".
.htaccess’te aşağıdaki kurallara sahibim
RewriteEngine On
# Force HTTPS + non-www
RewriteCond %{HTTP_HOST} ^www.something.be$ [NC,OR]
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://something.be/$1 [R=301,L]
# Redirect index.html → /
RewriteRule ^index.html$ https://something.be/ [R=301,L]
# Redirect .html URLs → clean URLs
RewriteCond %{THE_REQUEST} s/+(.*).html[s?]
RewriteRule ^ %1 [R=301,L]
# Internal rewrite clean → .html
RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule ^([^/.]+)$ $1.html [L]
Bu sorun Google Arama’da hiç yok, bana ipucu verebilecek biri var mı lütfen?
