Hi All i have a problem that my file have .html extention but i want that when the file open in brownser the extention had hidden.e.g file.html to file. Advance thanks
In your .htaccess file use this:
.htaccess
RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME}\.html -f RewriteRule ^(.*)$ $1.html
Now you can use lins like http://www.mysite.com/contact rather than http://www.mysite.com/contact.html.
http://www.mysite.com/contact
http://www.mysite.com/contact.html
Hope this helps!