Other User Diary

step 1 : create .htaccess file and upload in root folder and 
add this code.

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^/\.]+)/?$ index.php?id=$1 [L]


step 2 :

create index.php file. add this code

<?php

echo $id=$_GET['id'];

?>


now test your program , upload both file in same directory server
and pass test url http://yourdomain.com/yourname



x-xmax
Country       UNITEDSTATES
City               Ohio
Posted On   05/07/2012

5



Other Pages