Link to home
Start Free TrialLog in
Avatar of Edward Harford
Edward Harford

asked on

Hiding data in asp.net page from Search Engines

I want to hide pages from Search Engines that are hidden behind a user-name and password protected asp.net page.

Can I use     <meta name="keywords" content="noindex,nofollow,noarchive" /> ?

Avatar of David H.H.Lee
David H.H.Lee
Flag of Malaysia image

Put this meta tag inside the <head> section of the protected asp.net pages.
Example:
<meta name="robots" content="noindex,nofollow,noarchive" /> 

Open in new window


More information:
https://developers.google.com/search/docs/advanced/robots/robots_meta_tag
Avatar of Edward Harford
Edward Harford

ASKER

Many thanks my Developer Environment wants to put it in <header></header>, is there any significance in that?
ASKER CERTIFIED SOLUTION
Avatar of David H.H.Lee
David H.H.Lee
Flag of Malaysia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Perfect, many thanks