Domain Url Uzantısı
Autor: Ayaz T.
Visited 1748,
Followers 2,
Udostępniony 0
Merhaba
alan adı uzantısı .php silmek istiyorum.
örnek vermek gerekirse
www.domain.com/index.php
www.domain.com/index
www.domain.com/marka-tanitimi.php
www.domain.com/marka-tanitimi
olarak hepsi güncellensin istiyorum..
menü düğmeleri olarak tıkladığımda sorunsuz olarak düzeltsin.
.htatces kod eklediğimde link olarak acıyor. Ancak menü'de tıkladığımda yine .php acılıyor..
Hello there I want to delete the domain extension .php. for example www.domain.com/index.php www.domain.com/index www.domain.com/brand-tanitimi.php www.domain.com/brand-tanitimi I want it all updated. when I click as menu buttons it fixes it without any problem. When I add .htatces code it hurts as a link. However, when I click on the menu, .php opens again..
Posted on the
Hello.As far as I know, at the moment, this is impossible.
Show here:
https://alexcican.com/post/how-to-remove-php-html-htm-extensions-with-htaccess/
JJ.
Autor
Merhaba Ben Bu Konuyu Çözdüm :)
Uzun Araştırmalar Sonucunda Bunun Yolunu Buldum..
Yapılması Gereken .htaccess dosyasının içine aşağıda vereceğim kodu eklemenizdir.. php kodlarını gizleyecek ve yönlendiricektir..
RewriteEngine On
RewriteCond %{THE_REQUEST} \s/+(.+)\.php[\s?][NC]
RewriteRule ^/%1[R=302,L,NE]
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule ^([^\.]+)$ $1.php [NC,QSA,L]
Zip İçinde Kendi .htaccess dosyamıda ekleyeceğim içerisinde
ssl http to https code
404 hata page to home page
domain.com/index.php to domain.com/index code
mevcut.
Benim Websitehttps://obsidyensoft.com
Gelip Kendiniz Kontrol Edin Çalışır.
Autor
Merhaba Yukarıda Verdiğim Formatta domain.com/admin Sayfası giriş yapmıyordu.
Bu Nedenle Admin Sayfası Yönlendirme Bölümünden Etkilenlenmemesi Gerekmektedir.
Aşağıda Vereceğim Kodu En Üstte Ekleyin.
Autor
#http - https yönlendirme
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#404 hata sayfası yönlendirme
ErrorDocument 404 /404.html
#Admin Sayfasını iptal etmek için alttaki kodu RewriteEngine On Altında En ÜSt Sırada Bırak
RewriteRule ^(admin|user)($|/) - [L]
#Giriş Paneli Çalıştırma - Üye Girişi
RewriteRule ^(imlogin|imlogin.php)($|/) - [L]
#Card Alışveriş Sayfası Normal Döndürme Generator hata
RewriteRule ^(cart|product)($|/) - [L]
#İletişim Sayfası Çalıştırma
RewriteRule ^(imemail|imemail)($|/) - [L]
#Hazırlanmış Code .htacces Yapıştırın.
RewriteEngine On
RewriteRule ^(admin|user)($|/) - [L]
RewriteRule ^(cart|product)($|/) - [L]
RewriteRule ^(imlogin|imlogin.php)($|/) - [L]
RewriteRule ^(imemail|imemail)($|/) - [L]
RewriteCond %{THE_REQUEST} \s/+(.+)\.php[\s?] [NC]
RewriteRule ^ /%1 [R=302,L,NE]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.php [NC,QSA,L]