Guys I have write a mod rewrite to make SEO URLs.But .html pages are only coming to the title bar only if requested it.And if I request .php file it's showing .php extension on the URL bar. I need to change the .php request to .html on the address bar just like mod-rewrite change "domain.com" to www.domain.com" initially it request. "sample.php -> sample.html" I have seen this on some websites but hard to find the way to do it. Waiting for your help.
you might want to use the htaccess method, RewriteEngine on RewriteRule ^$.html sample.php [L] Code (markup):