How to make hidden pages so only people who now the links can access it and search engines can't find it?
you can add a meta tag on that page: <meta name="ROBOTS" content="NOINDEX, NOFOLLOW" /> HTML: or make a file called robots.txt in the root directory and write the pages you want do hide: User-agent: * Disallow: /page-to-hide.html Code (markup):