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

  1. use robots.txt follows...

    user-agent: * disallow: /

  2. use url rewriting, make ghost paths

  3. disable directory browsing. (directory listing denied...)

  4. use .ashx serve images.

  5. 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 experience better (if it's done properly) , locks out most/all crawlers.


Comments

Popular posts from this blog

android - Spacing between the stars of a rating bar? -

html - Instapaper-like algorithm -

c# - How to execute a particular part of code asynchronously in a class -