Hi All,
 
I am rewriting rule in .htaccess file.I need to convert all .php files with 
.html extension.
 
Ex: http://localhost/test/test.php to http://localhost/test/test.html 
 
     http://localhost/test/test.php?id=1  to http://localhost/test/test-1.html 
 
My code is
    
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^test-([0-9]+)\.html$ test.php?id=$1
 
if i enter this url in browser "http://localhost/test/test.php?id=1"; i need to 
show this one in browser "http://localhost/test/test-1.html ".But my code is 
displaying this one only "http://localhost/test/test.php?id=1"; 
 
Can you please help me where can i change my code.
 
Thanks,
Gangadhar


      Explore your hobbies and interests. Go to 
http://in.promos.yahoo.com/groups

[Non-text portions of this message have been removed]

Reply via email to