hello friends,
i trying to change the extension .php into .html in my local server but it still shows the .php extension.
i have test.php and after the mod_rewrite it just show the test.php but if i type in url test.html then it also show the same content of test.php, that i want but i don't want to type test.html in the url, i want it automatically change if i call the file test.php
the .htaccess code is here
Options +FollowSymLinks
RewriteEngine On
RewriteBase /tests
RewriteRule ^/?test\.html$ test.php [L]
pls help to solve this prob.