In the .htaccess file can we change the file extention to be display. Like my .htacces file rewrite any .html files to .php fileS WITH THE BELOW CODE.
RewriteEngine On
RewriteRule (.*).html$ $1.php [L]
If the URL typed as http://localhost/test/test.html it will internally called test.php file. However I would like the page to have the.php extension on it as well right now it stays with the .html extension. Is this possible?