Php

.htaccess kullanarak sayfalarınızı klasör olarak gösterin

Posted on Mayıs 9, 2009. Filed under: Php | Tags: , , , , , , , , |

Öncelikle .htacces dosyasını açın ve şu kodları yazın.
[important color=grey title="Kod"]RewriteEngine on
# Rewrite URLs of the form ‘x’ to the form ‘index.php?q=x’.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA][/important]
gelen linkimiz
http://www.siteismi.com/sehirler/34
bir php dosyası oluşturuyoruz ve içine
[important colur="black" title="Kod" ]<?php
$url = explode(“/”,$_GET['q']);
if (isset($url[0]) && $url[0] == ’sehirler’ && isset($url[1]) && isnumeric($url[1])) {
include(’sehirler.php’);
exit();
}
//yukarıdaki if bloğunuzu oluşturacağınız klasör sayısı kadar [...]

Read Full Post | Make a Comment ( 1 so far )

  • Fucktoryel

Liked it here?
Why not try sites on the blogroll...