Merhabalar,
Daha önce cpanelden ssl oluşturup https yönlendirmiştim.
Sonrasında php script te sıkıntılar olunca tekrar geri ssl silip http olması için uğraştım sayfalar sorunsuz açılıyor fakat
google üzerinde site adı ile girince https tanıyor oda 403 forbidden hatası veriyor
Ben bu ssl komple iptal etmesini istiyorum tüm sitelerim index dahil http olmalı
.htaccess aşağıdaki gibidir

<IfModule mod_rewrite.c>
RewriteEngine on




RewriteCond %{HTTP_HOST} !^www.
RewriteCond %{HTTPS}s on(s)|offs()
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [NE,L,R]


RewriteRule ^foto-galeri/(.*)$ foto-galeri-detay.php?link=$1 [QSA,L]
RewriteRule ^proje/(.*)$ proje.php?link=$1 [QSA,L]
RewriteRule ^projeler/(.*)$ projeler.php?link=$1 [QSA,L]
RewriteRule ^siparis/(.*)$ siparis.php?link=$1 [QSA,L]
RewriteRule ^sayfalar/(.*)$ sayfa.php?link=$1 [QSA,L]
RewriteRule ^haber/(.*)$ haber.php?link=$1 [QSA,L]
RewriteRule ^haberler/(.*)$ haberler.php?link=$1 [QSA,L]


</IfModule>
# php -- BEGIN cPanel-generated handler, do not edit
# Set the “ea-php72” package as the default “PHP” programming language.
<IfModule mime_module>
AddHandler application/x-httpd-ea-php72 .php .php7 .phtml
</IfModule>
# php -- END cPanel-generated handler, do not edit