I just confirmed that your site working fine, whether you visit it from www or without www, only you site opens. If some problem is occuring to you then please remove cache from your borwser. If problem still remains then it would probable be because your domain is not 301 redirected. It means anyone can access your website with either www.moviehome.in or even without www and still the pages load with different url. You have to redirect one of these to the other. Either redirect www domain to without www domain or vice versa. This should solve your problem.
To redirect you need to edit your htaccess file with the following code.
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
First line is already in the file, you need to add the rest two lines after the first line. This should redirect the non www url to www. And most probably this should be the solution for your problem.
I hope this helps.