I have a website which is fully search engine optimized , But i am facing one problem. I a go back to my home page form any other inner pages in my website then the home page URL is showing as index.html( my site is designed in HTML pages ). How can i chnage this so that my site alwasy hows as www dot mydomain dot com
You are talking about url rewriting. It is different from host to host. So search google: url rewriting *host name* It should have instructions laid out well. It can slow down your site a bit, if that matters.
First, don't link to "index.html", link to "/" instead. For making sure that you always have www, you'll want something like the following in your .htaccess file RewriteCond %{HTTP_HOST} !^www.example.com$ [NC] RewriteRule ^(.*)$ http://www.example.com/$1 [R=301,L] Code (markup):