Postingan lainnya
Bagaimana membuat url seo friendly dengan .htaccess dan php
URL Sebelumnya http://localhost/PLUT/detail-konten/52/Contoh%20judul Ingin menjadi URL http://localhost/PLUT/detail-konten/Contoh-judul
Kode redirect ke halaman detail-konten
<a href="detail-konten/<?php echo $idkonten ?>/<?php echo $judul ?>" class="category-b">Baca Selengkapnya</a>
Kode .htaccess
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteCond %{SCRIPt_FILENAME} !-d
RewriteCond %{SCRIPt_FILENAME} !-f
RewriteCond %{REQUEST_URI} !\.php [NC]
RewriteRule ^detail-konten/([\d]+) detail_konten.php?id=$1 [L,NC]
0
1 Jawaban:
bisa dicoba:
<pre> RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^detail-konten/([0-9]+)/(.*)$ detail-konten/$2 [NC,L] </pre>
bisa test disini: <a href='https://htaccess.madewithlove.be/'>https://htaccess.madewithlove.be/</a>
0
Tanggapan
oke terimakasih gan, saya coba