Mod_rewrite (- sitenin kök hiçbir uzantıları) kullanarak soru yönlendir

0 Cevap php

Ben mod_rewrite ile küçük bir sorun yaşıyorum

. Ben benim htacces de şu var:

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.+)\.htm$ index.php?name=$1 [NC]

Bu benim index.php dosyası:

<?php echo $_GET['name']; ?>

Bu, aşağıdaki url için harika çalışıyor:

www.mySite.com / Bu bir Example.htm olduğunu

Bu "bu bir örnektir" görüntülemek istiyorsunuz

What i'm trying to do however, is get it to do the same, without the .htm extension: for example:

www.mySite.com / bu bir örnektir

Herhangi bir fikir?

(Konuyla ilgili sanmıyorum ama bu test için xampp kullanıyorum)

0 Cevap