my site's pagerank suddenly dropped to 0, and the home page does not have cache. My URL ending is : /UI/Site/Pages/Home.aspx When icheck the cache without the addition (just .co.il/) i see there is cache. My home page lost all its ranking, but the other pages still have normall traffic - so i dont think the site is banned or something. Should i redirect the URL or something?
For best results it may be best to use the root index as index for your website, and if that isn't possible, redirect the root index to the index location using a 301 redirect. You can use the following code for it: <%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location", "/UI/Site/Pages/Home.aspx" %> or alternatively via .htaccess RewriteEngine On RewriteRule ^$ /UI/Site/Pages/Home.aspx [R=301,NC] Code (markup):