Hello I have used codeigniter to develop my website but when my website is searched in google , google shows up links to the files (pdf) in a particular folder and user can view these files (pdf) directly without login. I want to restrict google to directly show the links to these files. ex: www.mywebsite/myfolder/myfile
Please guide me how can I accomplish this. Thank you.
A little modification from the previous answer :
Place the .htaccess in your file folder with the content
order deny, allow
deny from all
This will deny all access to that particular folder.
For accessing the files write a function in controller with body -
public function index($file_name){
if($this->login()) // login check
if (preg_match('^[A-Za-z0-9]{2,32}+[.]{1}[A-Za-z]{3,4}$^', $file_name)) // validation
{
$file = 'my_path/'.$file_name;
if (file_exists($file)) // check the file is existing
{
header('Content-Type: '.get_mime_by_extension($file));
readfile($file);
}
else show_404()
}
else show_404();
}
then you have to add some line to your routes.php file in your config folder as like this
$route['my_files/(:any)'] = "my_controller/index/$1";
this will redirect all request to myfiles/bla_bla_bla to my_controller/index/bla_bla_bla
think this may help :)