ASP.NET. Hiding whole site structure. Is it possible? -
    i guess else opposite need hide "directory" structure of asp.net website.   for reason thinking of    use robots.txt follows...   user-agent: *  disallow: /  use url rewriting, make ghost paths  disable directory browsing. (directory listing denied...)  use .ashx serve images.  other ways may suggest.    in other words not "downloader-structrure reader", strip site.   as see sekurity tag missing :)   p.s. not care seo          a site downloader wget -r  work anyway. follows links , doesn't care directories (except fact can limit depth). if want exclude legit crawlers google, using robots.txt fine. wget , rogue crawlers don't care though.   the solution either requriring login (but still doesn't protect against people who'd use wget download whole site; they'll provide login information/session id) or cluttering content annoying captchas (pisses of legit users quickly) or making whole site use javascript/ajax display/load content. makes user e...