How to create a robots.txt file to hide a view page from search engines in codeigniter

StackOverflow https://stackoverflow.com/questions/19761737

  •  03-07-2022
  •  | 
  •  

How to create a robots.txt file in a codeigniter project to hide a view page . where should i place this robots.txt file currently i have created file like this

User-agent: *
Disallow: /application/views/myviewpage.php

in side /public_html/folder/robots.txt (Where i place my .htaccess file). Is there any way to test this?

有帮助吗?

解决方案

The robots.txt file MUST be placed in the document root of the host. It won’t work in other locations.

If your host is example.com, it needs to be accessible at http://example.com/robots.txt.

If your host is www.example.com, it needs to be accessible at http://www.example.com/robots.txt.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top